diff options
Diffstat (limited to 'tools/dump.c')
-rw-r--r-- | tools/dump.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/dump.c b/tools/dump.c index 38aaa5578..4fc36dc6d 100644 --- a/tools/dump.c +++ b/tools/dump.c @@ -1,8 +1,7 @@ #include "system.h" -#include "rpmlib.h" - #include "intl.h" +#include "rpmlib.h" int main(int argc, char ** argv) { @@ -16,13 +15,13 @@ int main(int argc, char ** argv) } if (fd < 0) { - fprintf(stderr, "cannot open %s: %s\n", argv[1], strerror(errno)); + fprintf(stderr, _("cannot open %s: %s\n"), argv[1], strerror(errno)); exit(1); } h = headerRead(fd, HEADER_MAGIC_YES); if (!h) { - fprintf(stderr, "headerRead error: %s\n", strerror(errno)); + fprintf(stderr, _("headerRead error: %s\n"), strerror(errno)); exit(1); } close(fd); @@ -32,5 +31,3 @@ int main(int argc, char ** argv) return 0; } - - |