diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-07-26 23:24:35 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-07-26 23:24:35 +0300 |
commit | 4810fd10c665d491a3956fcda5c57ee11dc972e7 (patch) | |
tree | 980b0b17f5bc60a9cb351afcdd7fbb4dd6f21953 /src/bin/psql/command.c | |
parent | ee27058ac788585c8c5f91e1f05a927cd81e20b2 (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 8680b3696ce..c14db7d6421 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -1350,7 +1350,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; } |