diff options
author | Michael Paquier | 2025-02-25 06:53:32 +0000 |
---|---|---|
committer | Michael Paquier | 2025-02-25 06:53:32 +0000 |
commit | 560a842d639f28497ab6df08ac0305240be79803 (patch) | |
tree | 563dc1cd47c812e7abfa8552011542d34d55157d | |
parent | 5b8f2ccc0a93375acb64a457817e61f400404a1f (diff) |
Fix untranslatable string concatenation in pg_upgrade
Oversight in 1aab6805919b.
Author: Kyotaro Horiguchi
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | src/bin/pg_upgrade/option.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_upgrade/option.c b/src/bin/pg_upgrade/option.c index fe716c4c805..188dd8d8a8b 100644 --- a/src/bin/pg_upgrade/option.c +++ b/src/bin/pg_upgrade/option.c @@ -323,8 +323,8 @@ usage(void) printf(_(" --copy copy files to new cluster (default)\n")); printf(_(" --copy-file-range copy files to new cluster with copy_file_range\n")); printf(_(" --no-statistics do not import statistics from old cluster\n")); - printf(_(" --set-char-signedness=OPTION set new cluster char signedness to \"signed\" or\n")); - printf(_(" \"unsigned\"\n")); + printf(_(" --set-char-signedness=OPTION set new cluster char signedness to \"signed\" or\n" + " \"unsigned\"\n")); printf(_(" --sync-method=METHOD set method for syncing files to disk\n")); printf(_(" -?, --help show this help, then exit\n")); printf(_("\n" |