aboutsummaryrefslogtreecommitdiff
path: root/src/xz/util.c
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-09-24 22:10:18 +0800
committerJia Tan <jiat0218@gmail.com>2023-09-24 22:10:18 +0800
commiteaebdef4d4de3c088b0905f42626b74e0d23abf3 (patch)
tree799273a0a11b6693ac0c5a9be464f902d48e4154 /src/xz/util.c
parentliblzma: Change quoting style from `...' to '...'. (diff)
downloadxz-eaebdef4d4de3c088b0905f42626b74e0d23abf3.tar.xz
xz: Change quoting style from `...' to '...'.
Diffstat (limited to 'src/xz/util.c')
-rw-r--r--src/xz/util.c6
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);
}