>From 8fdb2b6a779b833c7278c36f6dc0daf79b798c95 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Thu, 21 Aug 2008 22:16:31 +0200 Subject: [PATCH] od: ungettextize debugging messages --- src/od.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/od.c b/src/od.c index ac515dd..1b81ab1 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); } -- 1.5.6.4