Indent header_data fields when dumping headers
authorAntonio Ospite <ospite@studenti.unina.it>
Tue, 24 Jan 2012 15:03:33 +0000 (16:03 +0100)
committerAntonio Ospite <ospite@studenti.unina.it>
Wed, 25 Jan 2012 14:57:30 +0000 (15:57 +0100)
src/am7xxx.c

index 3aedd7b..483eaf7 100644 (file)
@@ -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)