diff options
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | common/cmd_jffs2.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -8,6 +8,8 @@ Changes since U-Boot 1.1.4: * Update NAND boot documentation Patch by Stefan Roese, 12 Sep 2006 +* Fix alignment problem in "mtdparts" command + * Add documentation on the latest build environment extensions to the README file. diff --git a/common/cmd_jffs2.c b/common/cmd_jffs2.c index 201c3c1..b5fd417 100644 --- a/common/cmd_jffs2.c +++ b/common/cmd_jffs2.c @@ -1268,7 +1268,7 @@ static void list_partitions(void) part_num = 0; list_for_each(pentry, &dev->parts) { part = list_entry(pentry, struct part_info, link); - printf(" %d: %-22s\t0x%08x\t0x%08x\t%d\n", + printf("%2d: %-20s0x%08x\t0x%08x\t%d\n", part_num, part->name, part->size, part->offset, part->mask_flags); |