From: Benno Schulenberg Date: Sun, 13 Mar 2022 11:45:56 +0000 (+0100) Subject: hardlink: add a missing word to an error message X-Git-Tag: v2.38-rc3~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cd8d4b5391fcc3c245a62a0878a7fd31a1360210;p=thirdparty%2Futil-linux.git hardlink: add a missing word to an error message Reported-by: Petr Pisar Signed-off-by: Benno Schulenberg --- diff --git a/misc-utils/hardlink.c b/misc-utils/hardlink.c index d4bb48386e..b4dcb3c908 100644 --- a/misc-utils/hardlink.c +++ b/misc-utils/hardlink.c @@ -1259,7 +1259,7 @@ static int parse_options(int argc, char *argv[]) opts.max_size = strtosize_or_err(optarg, _("failed to parse maximum size")); break; case 'r': - opts.cache_size = strtosize_or_err(optarg, _("failed to cache size")); + opts.cache_size = strtosize_or_err(optarg, _("failed to parse cache size")); break; case 'b': opts.io_size = strtosize_or_err(optarg, _("failed to parse I/O size"));