From: Petr Uzel Date: Thu, 13 Oct 2011 13:10:45 +0000 (+0200) Subject: fstrim: fix section number in referral to manpage X-Git-Tag: v2.20.1~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=167f69262cb1e647d4c511fdcc024085cdf931b7;p=thirdparty%2Futil-linux.git fstrim: fix section number in referral to manpage Reported-by: Roeland Jansen Addresses: https://bugzilla.novell.com/show_bug.cgi?id=723877 Signed-off-by: Petr Uzel --- diff --git a/sys-utils/fstrim.c b/sys-utils/fstrim.c index 29c65617c5..cc50674fbc 100644 --- a/sys-utils/fstrim.c +++ b/sys-utils/fstrim.c @@ -63,7 +63,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out) " -m, --minimum minimum extent length to discard\n" " -v, --verbose print number of discarded bytes\n"), out); - fputs(_("\nFor more information see fstrim(1).\n"), out); + fputs(_("\nFor more information see fstrim(8).\n"), out); exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS); }