From 2e226763e3ad160b768b13793db645b31455edea Mon Sep 17 00:00:00 2001 From: Andrew Dunstan Date: Sat, 25 Jul 2015 18:44:37 -0400 Subject: [PATCH] Fix up bad call to exit_nicely from commit af225551ef The signature for this changed in 9.2 --- src/bin/pg_dump/pg_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0