From b162f59656e930be8826a0202b994c3cc4835882 Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Tue, 24 Jan 2012 16:03:33 +0100 Subject: [PATCH] Indent header_data fields when dumping headers --- src/am7xxx.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/am7xxx.c b/src/am7xxx.c index 3aedd7b..483eaf7 100644 --- a/src/am7xxx.c +++ b/src/am7xxx.c @@ -32,10 +32,10 @@ static void dump_image_header(struct am7xxx_image_header *i) return; printf("Image header:\n"); - printf("format: 0x%08x (%u)\n", i->format, i->format); - printf("width: 0x%08x (%u)\n", i->width, i->width); - printf("height: 0x%08x (%u)\n", i->height, i->height); - printf("image size: 0x%08x (%u)\n", i->image_size, i->image_size); + printf("\tformat: 0x%08x (%u)\n", i->format, i->format); + printf("\twidth: 0x%08x (%u)\n", i->width, i->width); + printf("\theight: 0x%08x (%u)\n", i->height, i->height); + printf("\timage size: 0x%08x (%u)\n", i->image_size, i->image_size); } static void dump_header(struct am7xxx_header *h) -- 2.1.4