From: Andrew Dunstan Date: Sat, 25 Jul 2015 22:44:37 +0000 (-0400) Subject: Fix up bad call to exit_nicely from commit af225551ef X-Git-Tag: REL9_1_19~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e226763e3ad160b768b13793db645b31455edea;p=postgresql Fix up bad call to exit_nicely from commit af225551ef The signature for this changed in 9.2 --- diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 69ca956c43..710b779c7e 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;