aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/dumputils.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2012-06-18 23:57:00 +0300
committerPeter Eisentraut <peter_e@gmx.net>2012-06-18 23:57:00 +0300
commite1e97e93134a8b52861ae801117f94a15da410a4 (patch)
tree504018b0fa5c15fe5732e452459e7ef0442a315b /src/bin/pg_dump/dumputils.c
parentf9429746c970b5e46a843a5cd0387fb0081b8f55 (diff)
downloadpostgresql-e1e97e93134a8b52861ae801117f94a15da410a4.tar.gz
postgresql-e1e97e93134a8b52861ae801117f94a15da410a4.zip
pg_dump: Add missing newlines at end of messages
Diffstat (limited to 'src/bin/pg_dump/dumputils.c')
-rw-r--r--src/bin/pg_dump/dumputils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/dumputils.c b/src/bin/pg_dump/dumputils.c
index 8574380b9cf..91f2774955c 100644
--- a/src/bin/pg_dump/dumputils.c
+++ b/src/bin/pg_dump/dumputils.c
@@ -1323,7 +1323,7 @@ void
on_exit_nicely(on_exit_nicely_callback function, void *arg)
{
if (on_exit_nicely_index >= MAX_ON_EXIT_NICELY)
- exit_horribly(NULL, "out of on_exit_nicely slots");
+ exit_horribly(NULL, "out of on_exit_nicely slots\n");
on_exit_nicely_list[on_exit_nicely_index].function = function;
on_exit_nicely_list[on_exit_nicely_index].arg = arg;
on_exit_nicely_index++;