summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBenno Schulenberg <bensberg@justemail.net>2008-08-21 22:16:31 +0200
committerJim Meyering <meyering@redhat.com>2008-09-19 12:27:36 +0200
commitc7c961a3e5872bf9d5b2f3a09b5d08a471ec5a21 (patch)
treee410796c6b9206fe238917f5281090d6fcd23f99 /src
parent4718a2fdf407a7db8ff6150bcc401cc2375c01eb (diff)
downloadcoreutils-c7c961a3e5872bf9d5b2f3a09b5d08a471ec5a21.tar.xz
od: ungettextize debugging messages
Diffstat (limited to 'src')
-rw-r--r--src/od.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/od.c b/src/od.c
index 03347e424..ed3b50a8c 100644
--- 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);
}