aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2016-11-07 21:46:52 +1030
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-11-08 09:25:07 +1100
commit8c3f5cdca9a644afc62b2acdc9bdf4ea3673d213 (patch)
tree5e181a90be3b6204079e80398ff15bf00f606d0c
parent357acb7495bf6204b687cc2be136b527c67c1806 (diff)
downloadskiboot-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>
-rw-r--r--external/pflash/pflash.c2
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)