Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit aea7988

Browse files
committed
Remove redundant newlines from error messages
1 parent 5844565 commit aea7988

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_combinebackup/pg_combinebackup.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1173,8 +1173,8 @@ read_pg_version_file(char *directory)
11731173
* out.
11741174
*/
11751175
if (version < 10 && *ep == '.')
1176-
pg_fatal("%s: server version too old\n", filename);
1177-
pg_fatal("%s: could not parse version number\n", filename);
1176+
pg_fatal("%s: server version too old", filename);
1177+
pg_fatal("%s: could not parse version number", filename);
11781178
}
11791179

11801180
/* Debugging output. */

0 commit comments

Comments
 (0)