summaryrefslogtreecommitdiffstats
path: root/sys-utils/readprofile.c
diff options
context:
space:
mode:
authorPedro Ribeiro2008-10-03 09:27:33 +0200
committerKarel Zak2008-10-03 09:27:33 +0200
commit39a5a2314be3e3b5af50f5c5cb56d853eabb2bfb (patch)
tree9b5dedf919ec54edc0d7e7d2421430e72cff8cb3 /sys-utils/readprofile.c
parentlosetup: several strings without gettext strings (diff)
downloadkernel-qcow2-util-linux-39a5a2314be3e3b5af50f5c5cb56d853eabb2bfb.tar.gz
kernel-qcow2-util-linux-39a5a2314be3e3b5af50f5c5cb56d853eabb2bfb.tar.xz
kernel-qcow2-util-linux-39a5a2314be3e3b5af50f5c5cb56d853eabb2bfb.zip
readprofile: several strings without gettext calls
Signed-off-by: Pedro Ribeiro <p.m42.ribeiro@gmail.com> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'sys-utils/readprofile.c')
-rw-r--r--sys-utils/readprofile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-utils/readprofile.c b/sys-utils/readprofile.c
index 950e90510..52f5d8c94 100644
--- a/sys-utils/readprofile.c
+++ b/sys-utils/readprofile.c
@@ -224,7 +224,7 @@ main(int argc, char **argv) {
exit(1);
}
if (write(fd, &multiplier, to_write) != to_write) {
- fprintf(stderr, "readprofile: error writing %s: %s\n",
+ fprintf(stderr, _("readprofile: error writing %s: %s\n"),
defaultpro, strerror(errno));
exit(1);
}
@@ -265,8 +265,8 @@ main(int argc, char **argv) {
small++;
}
if (big > small) {
- fprintf(stderr,"Assuming reversed byte order. "
- "Use -n to force native byte order.\n");
+ fprintf(stderr,_("Assuming reversed byte order. "
+ "Use -n to force native byte order.\n"));
for (p = buf; p < buf+entries; p++)
for (i = 0; i < sizeof(*buf)/2; i++) {
unsigned char *b = (unsigned char *) p;