From 25fa0f80aedc1d5c3c73bc652c2fd28e48ee249e Mon Sep 17 00:00:00 2001 From: Zdenek Styblik Date: Wed, 17 Jul 2013 10:32:56 +0000 Subject: [PATCH] ID: 70 - Fixes and updates for ipmitool hpm There is no point in putting the size of things in hex. Commit for Dan Gora --- ipmitool/lib/ipmi_hpmfwupg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipmitool/lib/ipmi_hpmfwupg.c b/ipmitool/lib/ipmi_hpmfwupg.c index eee72cb..3349dfd 100644 --- a/ipmitool/lib/ipmi_hpmfwupg.c +++ b/ipmitool/lib/ipmi_hpmfwupg.c @@ -1175,7 +1175,7 @@ void HpmDisplayUpgrade( int skip, unsigned int totalSent, { /* Display the time taken to complete the upgrade */ printf( - "| |Upload Time: %02ld:%02ld | Image Size: %05x |\n", + "| |Upload Time: %02ld:%02ld | Image Size: %7d bytes |\n", timeElapsed/60,timeElapsed%60,totalSent); } }