diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-07-26 23:24:35 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-07-26 23:24:35 +0300 |
commit | 4810fd10c665d491a3956fcda5c57ee11dc972e7 (patch) | |
tree | 980b0b17f5bc60a9cb351afcdd7fbb4dd6f21953 /src/bin/psql/common.c | |
parent | ee27058ac788585c8c5f91e1f05a927cd81e20b2 (diff) |
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 9670dc62b88..98737324d07 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -85,7 +85,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; |