summaryrefslogtreecommitdiffstats
path: root/misc-utils/namei.c
diff options
context:
space:
mode:
authorSami Kerola2018-05-10 22:18:53 +0200
committerKarel Zak2018-05-28 13:36:38 +0200
commit1405658822ac6add648fa02b5c26c2e28617eab9 (patch)
tree1bed03851bd2de41530c7f2dfe3518743fcf1a28 /misc-utils/namei.c
parentbash-completion: add swapon specifiers to completion (diff)
downloadkernel-qcow2-util-linux-1405658822ac6add648fa02b5c26c2e28617eab9.tar.gz
kernel-qcow2-util-linux-1405658822ac6add648fa02b5c26c2e28617eab9.tar.xz
kernel-qcow2-util-linux-1405658822ac6add648fa02b5c26c2e28617eab9.zip
nls: remove translation strings
While looking earlier commit I noticed everything but formatting was removed from a message in namei.c file. That inspired me to look if there are more strings that does not need translation project attention. This change removes at least some of them, if not all. Reference: e19cc7b65b31c57f0fe9cb73c9afad5197796f82 Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'misc-utils/namei.c')
-rw-r--r--misc-utils/namei.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc-utils/namei.c b/misc-utils/namei.c
index 35cdf1964..60171f600 100644
--- a/misc-utils/namei.c
+++ b/misc-utils/namei.c
@@ -281,7 +281,7 @@ print_namei(struct namei *nm, char *path)
blanks += 1;
blanks += nm->level * 2;
printf("%*s ", blanks, "");
- printf(_("%s - %s\n"), nm->name, strerror(nm->noent));
+ printf("%s - %s\n", nm->name, strerror(nm->noent));
return -1;
}