summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2011-07-26 23:24:57 +0300
committerPeter Eisentraut <peter_e@gmx.net>2011-07-26 23:24:57 +0300
commitc4222d3880783f646e52ad4d6fd2f4017db444ce (patch)
treeaa25688ab013872817353041fb72e11c786b041c
parenta5b0d95744cf27f8b68dce3eb0415c0d3a0e949b (diff)
downloadpostgresql-c4222d3880783f646e52ad4d6fd2f4017db444ce.tar.gz
Add missing newlines at end of error messages
-rw-r--r--src/bin/psql/command.c2
-rw-r--r--src/bin/psql/common.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 014884a7b2..63db6a7d3d 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -1244,7 +1244,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("cannot 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 0a22d205c9..a63f9298e8 100644
--- a/src/bin/psql/common.c
+++ b/src/bin/psql/common.c
@@ -110,7 +110,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;