Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 560a842

Browse files
committed
Fix untranslatable string concatenation in pg_upgrade
Oversight in 1aab680. Author: Kyotaro Horiguchi Discussion: https://postgr.es/m/20250225.140953.1271748916018759840.horikyota.ntt@gmail.com
1 parent 5b8f2cc commit 560a842

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_upgrade/option.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,8 @@ usage(void)
323323
printf(_(" --copy copy files to new cluster (default)\n"));
324324
printf(_(" --copy-file-range copy files to new cluster with copy_file_range\n"));
325325
printf(_(" --no-statistics do not import statistics from old cluster\n"));
326-
printf(_(" --set-char-signedness=OPTION set new cluster char signedness to \"signed\" or\n"));
327-
printf(_(" \"unsigned\"\n"));
326+
printf(_(" --set-char-signedness=OPTION set new cluster char signedness to \"signed\" or\n"
327+
" \"unsigned\"\n"));
328328
printf(_(" --sync-method=METHOD set method for syncing files to disk\n"));
329329
printf(_(" -?, --help show this help, then exit\n"));
330330
printf(_("\n"

0 commit comments

Comments
 (0)