diff options
author | Karel Zak | 2011-02-11 09:06:27 +0100 |
---|---|---|
committer | Karel Zak | 2011-02-11 09:06:27 +0100 |
commit | d015794e0923f5f4566bdfb598853c0976f70706 (patch) | |
tree | f01ac9038adbea2cd36110952de56ba8c79214d8 /partx | |
parent | build-sys: release++ (v2.19) (diff) | |
download | kernel-qcow2-util-linux-d015794e0923f5f4566bdfb598853c0976f70706.tar.gz kernel-qcow2-util-linux-d015794e0923f5f4566bdfb598853c0976f70706.tar.xz kernel-qcow2-util-linux-d015794e0923f5f4566bdfb598853c0976f70706.zip |
partx, lsblk: fix gettext calls
Reported-by: Peter Breitenlohner <peb@mppmu.mpg.de>
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'partx')
-rw-r--r-- | partx/partx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/partx/partx.c b/partx/partx.c index efb627fc0..a65586f12 100644 --- a/partx/partx.c +++ b/partx/partx.c @@ -615,7 +615,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out) fprintf(out, _("\nAvailable columns (for --show):\n")); for (i = 0; i < __NCOLUMNS; i++) - fprintf(out, " %10s %s\n", infos[i].name, gettext(infos[i].help)); + fprintf(out, " %10s %s\n", infos[i].name, _(infos[i].help)); fprintf(out, _("\nFor more information see partx(8).\n")); |