diff options
author | Peter Eisentraut | 2022-06-23 20:40:52 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-06-23 20:53:24 +0000 |
commit | 75f2171e6c8fa4e1f0ce4fdbf907ee7d0fcb404d (patch) | |
tree | b4231a4b395f45f2e4657264d85e83abc0fc20a4 | |
parent | 52b5c53ae8ca63449788dea31d766895ba9c8553 (diff) |
Fix missing newline at end of message
-rw-r--r-- | src/bin/pg_upgrade/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/util.c b/src/bin/pg_upgrade/util.c index f25e14c3214..d0c4bd10f70 100644 --- a/src/bin/pg_upgrade/util.c +++ b/src/bin/pg_upgrade/util.c @@ -92,7 +92,7 @@ cleanup_output_dirs(void) default: /* different failure, just report it */ - pg_log(PG_WARNING, "could not access directory \"%s\": %m", + pg_log(PG_WARNING, "could not access directory \"%s\": %m\n", log_opts.rootdir); break; } |