diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-27 21:50:23 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-27 21:50:23 +0000 |
commit | 8e4357d8ade899146b7707f7eda2578ef06d58ea (patch) | |
tree | badf6307e095c191cabacbab38cb82290c076aa0 | |
parent | f032bccbddad5ad7d802f294580711e6a38e9415 (diff) | |
download | postgresql-8e4357d8ade899146b7707f7eda2578ef06d58ea.tar.gz postgresql-8e4357d8ade899146b7707f7eda2578ef06d58ea.zip |
Fix compile warning.
-rw-r--r-- | src/bin/pg_dump/dumputils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/dumputils.h b/src/bin/pg_dump/dumputils.h index 0266ee8f0cb..b4e39a1bd25 100644 --- a/src/bin/pg_dump/dumputils.h +++ b/src/bin/pg_dump/dumputils.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * - * $Header: /cvsroot/pgsql/src/bin/pg_dump/dumputils.h,v 1.1 2002/08/27 18:57:26 petere Exp $ + * $Header: /cvsroot/pgsql/src/bin/pg_dump/dumputils.h,v 1.2 2002/08/27 21:50:23 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -23,4 +23,4 @@ extern char *simple_prompt(const char *prompt, int maxlen, bool echo); extern const char *fmtId(const char *identifier); extern void appendStringLiteral(PQExpBuffer buf, const char *str, bool escapeAll); -#endif DUMPUTILS_H +#endif /* DUMPUTILS_H */ |