Commit 91124461 authored by Peter Eisentraut's avatar Peter Eisentraut

pg_waldump: Remove extra newline in error message

fatal_error() already prints out a trailing newline.
parent 77d21970
......@@ -1059,7 +1059,7 @@ main(int argc, char **argv)
XLogDumpDisplayStats(&config, &stats);
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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment