From: Denys Vlasenko Date: Tue, 23 Jan 2018 13:49:12 +0000 (+0100) Subject: od_bloaty: fix debug code X-Git-Tag: 1_29_0~345 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2b9a45b9e87c1c935cf0a992303313d62e72dc67;p=oweals%2Fbusybox.git od_bloaty: fix debug code Signed-off-by: Denys Vlasenko --- diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c index f19875c42..c9bb3b85f 100644 --- a/coreutils/od_bloaty.c +++ b/coreutils/od_bloaty.c @@ -1371,9 +1371,13 @@ int od_main(int argc UNUSED_PARAM, char **argv) } #ifdef DEBUG - for (i = 0; i < G.n_specs; i++) { - printf("%d: fmt=\"%s\" width=%d\n", - i, spec[i].fmt_string, width_bytes[spec[i].size]); + { + int i; + for (i = 0; i < G.n_specs; i++) { + printf("%d: fmt='%s' width=%d\n", + i, G.spec[i].fmt_string, + width_bytes[G.spec[i].size]); + } } #endif