From: Peter Eisentraut Date: Wed, 8 Mar 2017 14:57:17 +0000 (-0500) Subject: pg_xlogdump: Remove extra newline in error message X-Git-Tag: REL9_3_17~50 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c7ce2d03a7380f8049a7ba1d9336ebed144d97c;p=postgresql pg_xlogdump: Remove extra newline in error message fatal_error() already prints out a trailing newline. --- diff --git a/contrib/pg_xlogdump/pg_xlogdump.c b/contrib/pg_xlogdump/pg_xlogdump.c index 3206d85854..5dae782ced 100644 --- a/contrib/pg_xlogdump/pg_xlogdump.c +++ b/contrib/pg_xlogdump/pg_xlogdump.c @@ -720,7 +720,7 @@ main(int argc, char **argv) } if (errormsg) - fatal_error("error in WAL record at %X/%X: %s\n", + fatal_error("error in WAL record at %X/%X: %s", (uint32) (xlogreader_state->ReadRecPtr >> 32), (uint32) xlogreader_state->ReadRecPtr, errormsg);