Commit a87d46f7327eedead89284a0d0c5e5a769b984b9

Authored by Wolfgang Denk
1 parent 98e43917dc

Fix alignment problem in "mtdparts" command

Showing 2 changed files with 3 additions and 1 deletions Side-by-side Diff

... ... @@ -2,6 +2,8 @@
2 2 Changes since U-Boot 1.1.4:
3 3 ======================================================================
4 4  
  5 +* Fix alignment problem in "mtdparts" command
  6 +
5 7 * Add documentation on the latest build environment extensions to
6 8 the README file.
7 9  
... ... @@ -1268,7 +1268,7 @@
1268 1268 part_num = 0;
1269 1269 list_for_each(pentry, &dev->parts) {
1270 1270 part = list_entry(pentry, struct part_info, link);
1271   - printf(" %d: %-22s\t0x%08x\t0x%08x\t%d\n",
  1271 + printf("%2d: %-20s0x%08x\t0x%08x\t%d\n",
1272 1272 part_num, part->name, part->size,
1273 1273 part->offset, part->mask_flags);
1274 1274