summaryrefslogtreecommitdiff
path: root/tools/dump.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2009-01-08 13:57:59 +0200
committerPanu Matilainen <pmatilai@redhat.com>2009-01-08 13:57:59 +0200
commit685361038e87d321bd0f0d1451471df923ce667b (patch)
tree280986947fc65f48cb989d7b8f93ebfc47406e7d /tools/dump.c
parent5ff05aec30ddceb0fc8f2ecd7797aa7bdc9bc96d (diff)
downloadrpm-685361038e87d321bd0f0d1451471df923ce667b.tar.gz
rpm-685361038e87d321bd0f0d1451471df923ce667b.tar.bz2
rpm-685361038e87d321bd0f0d1451471df923ce667b.zip
Don't bother translators with messages from unused utilities (rhbz#466834)
- these things dont even get built normally, translations hardly needed
Diffstat (limited to 'tools/dump.c')
-rw-r--r--tools/dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dump.c b/tools/dump.c
index 0f3ecde6e..58777558b 100644
--- a/tools/dump.c
+++ b/tools/dump.c
@@ -17,14 +17,14 @@ int main(int argc, char *argv[])
}
if (Ferror(fdi)) {
- fprintf(stderr, _("cannot open %s: %s\n"),
+ fprintf(stderr, "cannot open %s: %s\n",
(argc == 1 ? "<stdin>" : argv[1]), Fstrerror(fdi));
exit(EXIT_FAILURE);
}
h = headerRead(fdi, HEADER_MAGIC_YES);
if (!h) {
- fprintf(stderr, _("headerRead error: %s\n"), Fstrerror(fdi));
+ fprintf(stderr, "headerRead error: %s\n", Fstrerror(fdi));
exit(EXIT_FAILURE);
}
Fclose(fdi);