diff options
author | Jia Tan <jiat0218@gmail.com> | 2023-09-24 22:10:18 +0800 |
---|---|---|
committer | Jia Tan <jiat0218@gmail.com> | 2023-09-24 22:10:18 +0800 |
commit | eaebdef4d4de3c088b0905f42626b74e0d23abf3 (patch) | |
tree | 799273a0a11b6693ac0c5a9be464f902d48e4154 /src/xz/args.c | |
parent | liblzma: Change quoting style from `...' to '...'. (diff) | |
download | xz-eaebdef4d4de3c088b0905f42626b74e0d23abf3.tar.xz |
xz: Change quoting style from `...' to '...'.
Diffstat (limited to 'src/xz/args.c')
-rw-r--r-- | src/xz/args.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xz/args.c b/src/xz/args.c index 2732ae08..8b481c93 100644 --- a/src/xz/args.c +++ b/src/xz/args.c @@ -124,7 +124,7 @@ parse_block_list(const char *str_const) if (str[2] == '\0') message_fatal(_("In --block-list, block " "size is missing after " - "filter chain number `%c:'"), + "filter chain number '%c:'"), str[0]); int filter_num = str[0] - '0'; @@ -598,8 +598,8 @@ parse_real(args_info *args, int argc, char **argv) case OPT_FILES0: if (args->files_name != NULL) message_fatal(_("Only one file can be " - "specified with `--files' " - "or `--files0'.")); + "specified with '--files' " + "or '--files0'.")); if (optarg == NULL) { args->files_name = stdin_filename; |