diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-04-16 19:55:48 -0700 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-04-28 00:57:12 +0200 |
commit | 08f077da9298ff65cc6f85f90d2770000a1beee9 (patch) | |
tree | 391db77295a9e5f532b8c22e7ca33e5552f73b0e /common | |
parent | 06f41f825c23344d889d5419bb5eaeceb3ed2a02 (diff) | |
download | u-boot-imx-08f077da9298ff65cc6f85f90d2770000a1beee9.zip u-boot-imx-08f077da9298ff65cc6f85f90d2770000a1beee9.tar.gz u-boot-imx-08f077da9298ff65cc6f85f90d2770000a1beee9.tar.bz2 |
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 <dbrownell@users.sourceforge.net>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_mtdparts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_mtdparts.c b/common/cmd_mtdparts.c index 3d437c0..e7b6acc 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; |