From: Paul Kocialkowski Date: Mon, 15 Jun 2015 19:35:04 +0000 (+0200) Subject: common: cmd_part: Proper alignment X-Git-Tag: v2015.07-rc3~32 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a78f78ebeb51169ce0ae22f2cd6db93ca33b20e3;p=pandora-u-boot.git common: cmd_part: Proper alignment This fixes a misaligned declaration. Signed-off-by: Paul Kocialkowski --- diff --git a/common/cmd_part.c b/common/cmd_part.c index 8483c1230d5..4bdbf901684 100644 --- a/common/cmd_part.c +++ b/common/cmd_part.c @@ -88,7 +88,7 @@ static int do_part_list(int argc, char * const argv[]) if (var != NULL) { int p; char str[512] = { '\0', }; - disk_partition_t info; + disk_partition_t info; for (p = 1; p < 128; p++) { char t[5];