summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-02-06 09:47:39 -0500
committerPeter Eisentraut <peter_e@gmx.net>2017-02-06 09:49:49 -0500
commit2a6bc23299d168dca7878c2dedb80667b11e9936 (patch)
tree5a24b8ffc9cdc06e5a0ba5b974d00c0004e29769 /src
parentc01b73336b23e1e6af4b5dc8e115e6eccf4fb3f8 (diff)
Add missing newline to error messages
Also improve the message style a bit while we're here.
Diffstat (limited to 'src')
-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 a8bb7b07e1d..c6881c05f35 100644
--- a/src/bin/pg_dump/pg_dump.c
+++ b/src/bin/pg_dump/pg_dump.c
@@ -10302,7 +10302,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);
}