From c366c5d87f5158be7ff886d097ccb8ef8c1c92fe Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 26 Jul 2011 23:23:59 +0300 Subject: Add missing newlines at end of error messages --- src/bin/psql/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bin/psql/common.c') 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; -- cgit v1.2.3