diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-07-26 23:27:40 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-07-26 23:27:40 +0300 |
commit | 14e109e82e8a7a179ad828ec1ed06ac0a8cd011a (patch) | |
tree | b55dbea82b5673eff3ec58367fff43fd16147058 /src/bin/psql/command.c | |
parent | d94eb49634fff6abc72bed577269aa21fd9f01e9 (diff) |
Add missing newlines at end of error messages
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index afba6b31987..472bcab03b5 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; } |