2222 *
2323 *
2424 * IDENTIFICATION
25- * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.275 2002/07/24 19:11:11 petere Exp $
25+ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.276 2002/07/25 20:52:59 petere Exp $
2626 *
2727 *-------------------------------------------------------------------------
2828 */
@@ -2897,7 +2897,7 @@ dumpOneBaseType(Archive *fout, TypeInfo *tinfo,
28972897if (fout -> remoteVersion >=70300 )
28982898{
28992899/* regproc result is correctly quoted in 7.3 */
2900- appendPQExpBuffer (q ," input = %s, output = %s, " ,
2900+ appendPQExpBuffer (q ," input = %s, output = %s" ,
29012901typinput ,typoutput );
29022902}
29032903else
@@ -2906,7 +2906,7 @@ dumpOneBaseType(Archive *fout, TypeInfo *tinfo,
29062906/* cannot combine these because fmtId uses static result area */
29072907appendPQExpBuffer (q ," input = %s," ,
29082908fmtId (typinput ,force_quotes ));
2909- appendPQExpBuffer (q ," output = %s, " ,
2909+ appendPQExpBuffer (q ," output = %s" ,
29102910fmtId (typoutput ,force_quotes ));
29112911}
29122912