summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2015-07-25 18:44:37 -0400
committerAndrew Dunstan <andrew@dunslane.net>2015-07-25 18:44:37 -0400
commit2e226763e3ad160b768b13793db645b31455edea (patch)
treeb0b0f959174306d9ec525380562c79a5b1a4fe73 /src
parentaf225551ef8435eb911e0b063358c42fcdecb853 (diff)
Fix up bad call to exit_nicely from commit af225551ef
The signature for this changed in 9.2
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_dump/pg_dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c
index 69ca956c43b..710b779c7ee 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -477,7 +477,7 @@ main(int argc, char **argv)
if (compressLevel < 0 || compressLevel > 9)
{
write_msg(NULL, "compression level must be in range 0..9\n");
- exit_nicely(1);
+ exit_nicely();
}
break;