From: David Brownell Date: Fri, 17 Apr 2009 02:55:48 +0000 (-0700) Subject: mtdpart command: align output columns X-Git-Tag: v2009.06-rc1~24 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=08f077da9298ff65cc6f85f90d2770000a1beee9;p=u-boot mtdpart command: align output columns Make the headers in the "mtdparts" command output line up with their columns ... strike the extra TAB character. Signed-off-by: David Brownell --- diff --git a/common/cmd_mtdparts.c b/common/cmd_mtdparts.c index 3d437c0861..e7b6accfd7 100644 --- a/common/cmd_mtdparts.c +++ b/common/cmd_mtdparts.c @@ -1314,7 +1314,7 @@ static void list_partitions(void) printf("\ndevice %s%d <%s>, # parts = %d\n", MTD_DEV_TYPE(dev->id->type), dev->id->num, dev->id->mtd_id, dev->num_parts); - printf(" #: name\t\t\tsize\t\toffset\t\tmask_flags\n"); + printf(" #: name\t\tsize\t\toffset\t\tmask_flags\n"); /* list partitions for given device */ part_num = 0;