diff options
author | Peter Eisentraut | 2004-12-12 18:26:29 +0000 |
---|---|---|
committer | Peter Eisentraut | 2004-12-12 18:26:29 +0000 |
commit | f9a6ba184a2b8db78919eac89dc56c68ad475587 (patch) | |
tree | 2f18de8a30412d701abf6a8d21851887a94a9274 /src/bin/scripts/common.c | |
parent | 373825c9cd97f78ff8f95d10b620c666f7608f28 (diff) |
Add missing newlines at end of error messages.
Diffstat (limited to 'src/bin/scripts/common.c')
-rw-r--r-- | src/bin/scripts/common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/scripts/common.c b/src/bin/scripts/common.c index 8b23d287a01..cdd104c6009 100644 --- a/src/bin/scripts/common.c +++ b/src/bin/scripts/common.c @@ -5,7 +5,7 @@ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/bin/scripts/common.c,v 1.13 2004/11/09 15:57:54 petere Exp $ + * $PostgreSQL: pgsql/src/bin/scripts/common.c,v 1.14 2004/12/12 18:26:28 petere Exp $ * *------------------------------------------------------------------------- */ @@ -30,7 +30,7 @@ get_user_name(const char *progname) pw = getpwuid(getuid()); if (!pw) { - fprintf(stderr, _("%s: could not obtain information about current user: %s"), + fprintf(stderr, _("%s: could not obtain information about current user: %s\n"), progname, strerror(errno)); exit(1); } @@ -41,7 +41,7 @@ get_user_name(const char *progname) if (!GetUserName(username, &len)) { - fprintf(stderr, _("%s: could not get current user name: %s"), + fprintf(stderr, _("%s: could not get current user name: %s\n"), progname, strerror(errno)); exit(1); } |