diff options
author | Joel Stanley <joel@jms.id.au> | 2016-11-07 21:46:52 +1030 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-11-08 09:25:07 +1100 |
commit | 8c3f5cdca9a644afc62b2acdc9bdf4ea3673d213 (patch) | |
tree | 5e181a90be3b6204079e80398ff15bf00f606d0c /external | |
parent | 357acb7495bf6204b687cc2be136b527c67c1806 (diff) | |
download | skiboot-8c3f5cdca9a644afc62b2acdc9bdf4ea3673d213.zip skiboot-8c3f5cdca9a644afc62b2acdc9bdf4ea3673d213.tar.gz skiboot-8c3f5cdca9a644afc62b2acdc9bdf4ea3673d213.tar.bz2 |
pflash: remove stray d in from info message
Fixes: 86640b032d79ff0 (pflash: Fix printf format warning)
Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'external')
-rw-r--r-- | external/pflash/pflash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/external/pflash/pflash.c b/external/pflash/pflash.c index c93bbd4..9d4c6b2 100644 --- a/external/pflash/pflash.c +++ b/external/pflash/pflash.c @@ -136,7 +136,7 @@ static void print_flash_info(uint32_t toc) printf("Flash info:\n"); printf("-----------\n"); printf("Name = %s\n", fl_name); - printf("Total size = %"PRIu64"dMB \n", fl_total_size >> 20); + printf("Total size = %"PRIu64"MB \n", fl_total_size >> 20); printf("Erase granule = %dKB \n", fl_erase_granule >> 10); if (bmc_flash) |