summaryrefslogtreecommitdiff
path: root/src/bin/psql/common.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2011-07-26 23:27:40 +0300
committerPeter Eisentraut <peter_e@gmx.net>2011-07-26 23:27:40 +0300
commit14e109e82e8a7a179ad828ec1ed06ac0a8cd011a (patch)
treeb55dbea82b5673eff3ec58367fff43fd16147058 /src/bin/psql/common.c
parentd94eb49634fff6abc72bed577269aa21fd9f01e9 (diff)
Add missing newlines at end of error messages
Diffstat (limited to 'src/bin/psql/common.c')
-rw-r--r--src/bin/psql/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c
index 256c1c2c2af..101544800d2 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;