summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2017-02-06 14:47:39 +0000
committerPeter Eisentraut2017-02-06 14:50:11 +0000
commit4387c9cfe41f6334a8960fc853dc86f9dc5e8a2e (patch)
treedb6d7e1f5b36995426c0f1f87d5706467c5338b7
parent822115db8f8dfa6cbd3b8b5090b9f7f990cbd402 (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.c2
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 977371a1e47..bc55ba79780 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -10176,7 +10176,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);
}