od: ungettextize debugging messages
authorBenno Schulenberg <bensberg@justemail.net>
Thu, 21 Aug 2008 20:16:31 +0000 (22:16 +0200)
committerJim Meyering <meyering@redhat.com>
Fri, 19 Sep 2008 10:27:36 +0000 (12:27 +0200)
src/od.c

index 03347e4..ed3b50a 100644 (file)
--- a/src/od.c
+++ b/src/od.c
@@ -1894,13 +1894,13 @@ it must be one character from [doxn]"),
     }
 
 #ifdef DEBUG
-  printf (_("lcm=%d, width_per_block=%zu\n"), l_c_m, width_per_block);
+  printf ("lcm=%d, width_per_block=%zu\n", l_c_m, width_per_block);
   for (i = 0; i < n_specs; i++)
     {
       int fields_per_block = bytes_per_block / width_bytes[spec[i].size];
       assert (bytes_per_block % width_bytes[spec[i].size] == 0);
       assert (1 <= spec[i].pad_width / fields_per_block);
-      printf (_("%d: fmt=\"%s\" in_width=%d out_width=%d pad=%d\n"),
+      printf ("%d: fmt=\"%s\" in_width=%d out_width=%d pad=%d\n",
              i, spec[i].fmt_string, width_bytes[spec[i].size],
              spec[i].field_width, spec[i].pad_width);
     }