diff options
author | Benno Schulenberg <bensberg@justemail.net> | 2008-08-21 22:16:31 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2008-09-19 12:27:36 +0200 |
commit | c7c961a3e5872bf9d5b2f3a09b5d08a471ec5a21 (patch) | |
tree | e410796c6b9206fe238917f5281090d6fcd23f99 /src | |
parent | 4718a2fdf407a7db8ff6150bcc401cc2375c01eb (diff) | |
download | coreutils-c7c961a3e5872bf9d5b2f3a09b5d08a471ec5a21.tar.xz |
od: ungettextize debugging messages
Diffstat (limited to 'src')
-rw-r--r-- | src/od.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |