]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd/part: correct alignment of partition list
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Thu, 5 Aug 2021 22:51:46 +0000 (00:51 +0200)
committerTom Rini <trini@konsulko.com>
Thu, 2 Sep 2021 13:48:20 +0000 (09:48 -0400)
When running 'part list' for an ISO partition the numbers are not under the
labels.

Correct the alignment of the ISO partition list. With the patch the
output looks like:

    Part   Start     Sect x Size Type
      1     3720     5024    512 U-Boot

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
disk/part_iso.c

index 822f2c4d9f4084abf7e3424d8face1e55a353108..1061f341d3532dc2062b5a4d3568253849071a88 100644 (file)
@@ -220,7 +220,7 @@ static void part_print_iso(struct blk_desc *dev_desc)
        printf("Part   Start     Sect x Size Type\n");
        i=1;
        do {
-               printf(" %2d " LBAFU " " LBAFU " %6ld %.32s\n",
+               printf(" %2d %8" LBAFlength "u %8" LBAFlength "u %6ld %.32s\n",
                       i, info.start, info.size, info.blksz, info.type);
                i++;
        } while (part_get_info_iso_verb(dev_desc, i, &info, 0) != -1);