summaryrefslogtreecommitdiffstats
path: root/term-utils/wall.c
diff options
context:
space:
mode:
authorSami Kerola2012-07-15 10:39:57 +0200
committerKarel Zak2012-07-16 18:18:22 +0200
commit289dcc90234680063a336925a99d1ef04e97cbda (patch)
treecb8656c16143daa406ea9d706406ca12d94d89d3 /term-utils/wall.c
parenttranslation: unify stat error messages (diff)
downloadkernel-qcow2-util-linux-289dcc90234680063a336925a99d1ef04e97cbda.tar.gz
kernel-qcow2-util-linux-289dcc90234680063a336925a99d1ef04e97cbda.tar.xz
kernel-qcow2-util-linux-289dcc90234680063a336925a99d1ef04e97cbda.zip
translation: unify file open error messages
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'term-utils/wall.c')
-rw-r--r--term-utils/wall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/term-utils/wall.c b/term-utils/wall.c
index 1f44be4c7..30324aa85 100644
--- a/term-utils/wall.c
+++ b/term-utils/wall.c
@@ -244,7 +244,7 @@ makemsg(char *fname, size_t *mbufsize, int print_banner)
fname);
if (!freopen(fname, "r", stdin))
- err(EXIT_FAILURE, _("cannot open file %s"), fname);
+ err(EXIT_FAILURE, _("cannot open %s"), fname);
}
while (fgets(lbuf, line_max, stdin)) {