aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/od_bloaty.c10
1 files changed, 7 insertions, 3 deletions
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)
1371 } 1371 }
1372 1372
1373#ifdef DEBUG 1373#ifdef DEBUG
1374 for (i = 0; i < G.n_specs; i++) { 1374 {
1375 printf("%d: fmt=\"%s\" width=%d\n", 1375 int i;
1376 i, spec[i].fmt_string, width_bytes[spec[i].size]); 1376 for (i = 0; i < G.n_specs; i++) {
1377 printf("%d: fmt='%s' width=%d\n",
1378 i, G.spec[i].fmt_string,
1379 width_bytes[G.spec[i].size]);
1380 }
1377 } 1381 }
1378#endif 1382#endif
1379 1383