Commit 640d0dc0 authored by Bruce Momjian's avatar Bruce Momjian

Fix compiler warning in the proper way.

parent 6ec4520a
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* *
* $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.48 2004/08/08 06:58:00 momjian Exp $ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_dumpall.c,v 1.49 2004/08/08 07:00:22 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -870,9 +870,10 @@ runPgDump(const char *dbname) ...@@ -870,9 +870,10 @@ runPgDump(const char *dbname)
appendPQExpBufferChar(cmd, '\''); appendPQExpBufferChar(cmd, '\'');
#else #else
appendPQExpBufferChar(cmd, '"'); appendPQExpBufferChar(cmd, '"');
appendPQExpBuffer(cmd, SYSTEMQUOTE);
#endif #endif
appendPQExpBuffer(cmd, "%s", SYSTEMQUOTE);
if (verbose) if (verbose)
fprintf(stderr, _("%s: running \"%s\"\n"), progname, cmd->data); fprintf(stderr, _("%s: running \"%s\"\n"), progname, cmd->data);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment