summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetter Reinholdtsen <pere@hungry.com>2014-01-15 08:55:38 +0000
committerPetter Reinholdtsen <pere@hungry.com>2014-01-15 08:55:38 +0000
commita324db391c511a423e0d161fe9ece11ed1f635c5 (patch)
tree2a3422ffeed0d23732316dcb3743ac02868e7789
parentb086e876d7eee4d2f5577187b6c9bb14eec42ba6 (diff)
downloadipmitool-a324db391c511a423e0d161fe9ece11ed1f635c5.tar.gz
Add missing format string placeholder (Coverity CID 1149038).
-rw-r--r--ipmitool/lib/ipmi_delloem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipmitool/lib/ipmi_delloem.c b/ipmitool/lib/ipmi_delloem.c
index 7f00ad6..e190cd4 100644
--- a/ipmitool/lib/ipmi_delloem.c
+++ b/ipmitool/lib/ipmi_delloem.c
@@ -3232,7 +3232,7 @@ ipmi_get_avgpower_consmpt_history(struct ipmi_intf * intf,
if (verbose > 1) {
rdata = (void *)pavgpower;
printf("Average power consumption history data"
- " :%x %x %x %x %x %x %x\n\n",
+ " :%x %x %x %x %x %x %x %x\n\n",
rdata[0], rdata[1], rdata[2], rdata[3],
rdata[4], rdata[5], rdata[6], rdata[7]);
}