From c1e46b35cdf62b55e6a4c5e0f1a1d2b66012d007 Mon Sep 17 00:00:00 2001 From: Zdenek Styblik Date: Sat, 21 Jan 2012 05:35:49 +0000 Subject: [PATCH] Remove hardcoded CR('\r') from 'lib/ipmi_fwum.c'. --- ipmitool/lib/ipmi_fwum.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ipmitool/lib/ipmi_fwum.c b/ipmitool/lib/ipmi_fwum.c index e39db0a..5efcd95 100644 --- a/ipmitool/lib/ipmi_fwum.c +++ b/ipmitool/lib/ipmi_fwum.c @@ -729,7 +729,7 @@ static tKFWUM_Status KfwumGetInfo(struct ipmi_intf * intf, unsigned char output, saveFirmwareInfo.bufferSize = KFWUM_SMALL_BUFFER; if(verbose) { - printf("IOL payload size : %d\r\n" , + printf("IOL payload size : %d\n" , saveFirmwareInfo.bufferSize); } } @@ -747,7 +747,7 @@ static tKFWUM_Status KfwumGetInfo(struct ipmi_intf * intf, unsigned char output, saveFirmwareInfo.bufferSize = KFWUM_SMALL_BUFFER; if(verbose) { - printf("IPMB payload size : %d\r\n" , + printf("IPMB payload size : %d\n" , saveFirmwareInfo.bufferSize); } } @@ -756,7 +756,7 @@ static tKFWUM_Status KfwumGetInfo(struct ipmi_intf * intf, unsigned char output, saveFirmwareInfo.bufferSize = KFWUM_BIG_BUFFER; if(verbose) { - printf("SMI payload size : %d\r\n", + printf("SMI payload size : %d\n", saveFirmwareInfo.bufferSize); } }