From 14e109e82e8a7a179ad828ec1ed06ac0a8cd011a Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 26 Jul 2011 23:27:40 +0300 Subject: [PATCH] Add missing newlines at end of error messages --- src/bin/psql/command.c | 2 +- src/bin/psql/common.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index afba6b3198..472bcab03b 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -1850,7 +1850,7 @@ do_edit(const char *filename_arg, PQExpBuffer query_buf, ret = GetTempPath(MAXPGPATH, tmpdir); if (ret == 0 || ret > MAXPGPATH) { - psql_error("cannot locate temporary directory: %s", + psql_error("could not locate temporary directory: %s\n", !ret ? strerror(errno) : ""); return false; } diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 256c1c2c2a..101544800d 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; -- 2.40.0