From: Antonio Ospite Date: Tue, 24 Jan 2012 15:03:33 +0000 (+0100) Subject: Indent header_data fields when dumping headers X-Git-Tag: v0.1.0~15 X-Git-Url: https://git.ao2.it/libam7xxx.git/commitdiff_plain/b162f59656e930be8826a0202b994c3cc4835882?hp=be42db29926b9089c68e6cc2834dddd0bffb5f11 Indent header_data fields when dumping headers --- 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)