diff options
author | Paul Kocialkowski <contact@paulk.fr> | 2015-06-15 21:35:04 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-06-19 16:46:47 -0400 |
commit | a78f78ebeb51169ce0ae22f2cd6db93ca33b20e3 (patch) | |
tree | d9b443503a059e94c2519c80ef1f7e42e86b7cb8 | |
parent | 437a7293a7168b6a2d356fe5d1955091afa2074f (diff) | |
download | u-boot-imx-a78f78ebeb51169ce0ae22f2cd6db93ca33b20e3.zip u-boot-imx-a78f78ebeb51169ce0ae22f2cd6db93ca33b20e3.tar.gz u-boot-imx-a78f78ebeb51169ce0ae22f2cd6db93ca33b20e3.tar.bz2 |
common: cmd_part: Proper alignment
This fixes a misaligned declaration.
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
-rw-r--r-- | common/cmd_part.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_part.c b/common/cmd_part.c index 8483c12..4bdbf90 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]; |