summaryrefslogtreecommitdiff
path: root/src/bin/psql/common.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2011-07-26 23:28:44 +0300
committerPeter Eisentraut <peter_e@gmx.net>2011-07-26 23:28:44 +0300
commit9df8ce848245592b6b8ac919319be3167ef774ac (patch)
tree8a5ccd18736443611f28791f988e66569019c3c2 /src/bin/psql/common.c
parent6f8f9c2bdd30eef9c3f1858fb413f5f4e39d6010 (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 877d6f7cdbc..54b8b2027e9 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;