[U-Boot] [PATCH 1/3] common: cmd_part: Proper alignment
Paul Kocialkowski
contact at paulk.fr
Thu Jun 11 15:37:30 CEST 2015
This fixes a misaligned declaration.
Signed-off-by: Paul Kocialkowski <contact at paulk.fr>
---
common/cmd_part.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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];
--
1.9.1
More information about the U-Boot
mailing list