aboutsummaryrefslogtreecommitdiff
path: root/src/bin/psql/command.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2011-07-26 23:23:18 +0300
committerPeter Eisentraut <peter_e@gmx.net>2011-07-26 23:23:18 +0300
commite67efb01e886d69d40d1cd87fba4507e8bb1035e (patch)
tree6ee88c0ce71fc90770e9344dabc974a6810ec4ba /src/bin/psql/command.c
parentce8d7bb6440710058503d213b2aafcdf56a5b481 (diff)
downloadpostgresql-e67efb01e886d69d40d1cd87fba4507e8bb1035e.tar.gz
postgresql-e67efb01e886d69d40d1cd87fba4507e8bb1035e.zip
Add missing newlines at end of error messages
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r--src/bin/psql/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 7d2490ab8ab..3608b725963 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -1855,7 +1855,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;
}