summaryrefslogtreecommitdiff
path: root/contrib/pg_upgrade/file.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-05-06 21:47:12 -0400
committerBruce Momjian <bruce@momjian.us>2011-05-06 21:47:42 -0400
commit5c5f83507cb697e436f8f9d20d62787c1a66d19c (patch)
tree9311e9284d44ba17bd463f10b131c03ea968d814 /contrib/pg_upgrade/file.c
parent3ef5b2df9738fd0795c1ffcaada93c3c5df7cd49 (diff)
Adjust pg_upgrade FATAL error messages to have consistent newlines.
Also adjust some error message capitalization for consistency.
Diffstat (limited to 'contrib/pg_upgrade/file.c')
-rw-r--r--contrib/pg_upgrade/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_upgrade/file.c b/contrib/pg_upgrade/file.c
index 0552541c244..a7e40090e2f 100644
--- a/contrib/pg_upgrade/file.c
+++ b/contrib/pg_upgrade/file.c
@@ -287,7 +287,7 @@ pg_scandir_internal(const char *dirname,
size_t entrysize;
if ((dirdesc = opendir(dirname)) == NULL)
- pg_log(PG_FATAL, "Could not open directory \"%s\": %m\n", dirname);
+ pg_log(PG_FATAL, "could not open directory \"%s\": %m\n", dirname);
*namelist = NULL;