[git commit] od_bloaty: fix debug code

Denys Vlasenko vda.linux at googlemail.com
Tue Jan 23 13:49:12 UTC 2018


commit: https://git.busybox.net/busybox/commit/?id=2b9a45b9e87c1c935cf0a992303313d62e72dc67
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 coreutils/od_bloaty.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/coreutils/od_bloaty.c b/coreutils/od_bloaty.c
index f19875c..c9bb3b8 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
 


More information about the busybox-cvs mailing list