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/util.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/util.c')
-rw-r--r-- | src/xz/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xz/util.c b/src/xz/util.c index df6fd709..45d3085e 100644 --- a/src/xz/util.c +++ b/src/xz/util.c @@ -153,8 +153,8 @@ str_to_uint64(const char *name, const char *value, uint64_t min, uint64_t max) if (multiplier == 0) { message(V_ERROR, _("%s: Invalid multiplier suffix"), value - 1); - message_fatal(_("Valid suffixes are `KiB' (2^10), " - "`MiB' (2^20), and `GiB' (2^30).")); + message_fatal(_("Valid suffixes are 'KiB' (2^10), " + "'MiB' (2^20), and 'GiB' (2^30).")); } // Don't overflow here either. @@ -170,7 +170,7 @@ str_to_uint64(const char *name, const char *value, uint64_t min, uint64_t max) return result; error: - message_fatal(_("Value of the option `%s' must be in the range " + message_fatal(_("Value of the option '%s' must be in the range " "[%" PRIu64 ", %" PRIu64 "]"), name, min, max); } |