diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-05-06 21:47:12 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-05-06 21:47:42 -0400 |
commit | 5c5f83507cb697e436f8f9d20d62787c1a66d19c (patch) | |
tree | 9311e9284d44ba17bd463f10b131c03ea968d814 /contrib/pg_upgrade/check.c | |
parent | 3ef5b2df9738fd0795c1ffcaada93c3c5df7cd49 (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/check.c')
-rw-r--r-- | contrib/pg_upgrade/check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_upgrade/check.c b/contrib/pg_upgrade/check.c index a9436ce5b2f..35b178e8286 100644 --- a/contrib/pg_upgrade/check.c +++ b/contrib/pg_upgrade/check.c @@ -253,7 +253,7 @@ check_cluster_compatibility(bool live_check) if ((lib_test = fopen(libfile, "r")) == NULL) pg_log(PG_FATAL, - "\npg_upgrade_support%s must be created and installed in %s\n", DLSUFFIX, libfile); + "pg_upgrade_support%s must be created and installed in %s\n", DLSUFFIX, libfile); else fclose(lib_test); |