From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Brownell Date: Thu, 16 Apr 2009 19:55:48 -0700 Subject: [U-Boot] [patch u-boot git] mtdpart command: align output columns Message-ID: <200904161955.48211.david-b@pacbell.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: David Brownell Make the headers in the "mtdparts" command output line up with their columns ... strike the extra TAB character. Signed-off-by: David Brownell --- 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;