diff options
author | Peter Eisentraut | 2017-02-06 14:47:39 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-02-06 14:50:19 +0000 |
commit | 863e70aa7f4dbfab6d94f6c708986610d62ddce3 (patch) | |
tree | 9e5862266fa9776f812e708027c7b9fd3afa597c | |
parent | 16b74c472157527b297d19838dd33e3474287207 (diff) |
Add missing newline to error messages
Also improve the message style a bit while we're here.
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 68468e335bf..2010d804b94 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -9657,7 +9657,7 @@ dumpCast(Archive *fout, CastInfo *cast) { funcInfo = findFuncByOid(cast->castfunc); if (funcInfo == NULL) - exit_horribly(NULL, "unable to find function definition for OID %u", + exit_horribly(NULL, "could not find function definition for function with OID %u\n", cast->castfunc); } |