diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-07-26 23:23:59 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-07-26 23:23:59 +0300 |
commit | c366c5d87f5158be7ff886d097ccb8ef8c1c92fe (patch) | |
tree | b32fccd77bf7bf444d4b00f98cbaee9bb22557b7 /src/bin/psql/common.c | |
parent | 16976b026a80567695e68a52592a73a75dc391ed (diff) | |
download | postgresql-c366c5d87f5158be7ff886d097ccb8ef8c1c92fe.tar.gz postgresql-c366c5d87f5158be7ff886d097ccb8ef8c1c92fe.zip |
Add missing newlines at end of error messages
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r-- | src/bin/psql/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 76cba901e0c..1b51bbe6bf2 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -87,7 +87,7 @@ pg_calloc(size_t nmemb, size_t size) tmp = calloc(nmemb, size); if (!tmp) { - psql_error("out of memory"); + psql_error("out of memory\n"); exit(EXIT_FAILURE); } return tmp; |