From: Sami Kerola Date: Tue, 22 Jan 2013 23:27:04 +0000 (+0000) Subject: findmnt: make usage() translator friendly X-Git-Tag: v2.23-rc1~287 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff2bd506dbb27767b753143f2b90dddab5e9ff1e;p=thirdparty%2Futil-linux.git findmnt: make usage() translator friendly Signed-off-by: Sami Kerola --- diff --git a/misc-utils/findmnt.c b/misc-utils/findmnt.c index f6c864fc4a..3089cce250 100644 --- a/misc-utils/findmnt.c +++ b/misc-utils/findmnt.c @@ -1050,12 +1050,11 @@ static void __attribute__((__noreturn__)) usage(FILE *out) " -N, --task use alternative namespace (/proc//mountinfo file)\n" " -n, --noheadings don't print column headings\n" " -u, --notruncate don't truncate text in columns\n")); - fprintf(out, _( - " -O, --options limit the set of filesystems by mount options\n" - " -o, --output the output columns to be shown\n" - " -P, --pairs use key=\"value\" output format\n" - " -r, --raw use raw output format\n" - " -t, --types limit the set of filesystems by FS types\n")); +fputs (_(" -O, --options limit the set of filesystems by mount options\n"), out); +fputs (_(" -o, --output the output columns to be shown\n"), out); +fputs (_(" -P, --pairs use key=\"value\" output format\n"), out); +fputs (_(" -r, --raw use raw output format\n"), out); +fputs (_(" -t, --types limit the set of filesystems by FS types\n"), out); fprintf(out, _( " -v, --nofsroot don't print [/dir] for bind or btrfs mounts\n" " -R, --submounts print all submounts for the matching filesystems\n"