Skip to content
Snippets Groups Projects
Commit 640d0dc0 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Fix compiler warning in the proper way.

parent 6ec4520a
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
* 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)
appendPQExpBufferChar(cmd, '\'');
#else
appendPQExpBufferChar(cmd, '"');
appendPQExpBuffer(cmd, SYSTEMQUOTE);
#endif
appendPQExpBuffer(cmd, "%s", SYSTEMQUOTE);
if (verbose)
fprintf(stderr, _("%s: running \"%s\"\n"), progname, cmd->data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment