mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-05-10 10:37:22 +00:00
Fix compile error
Signed-off-by: Patrick Huesmann <info@patrick-huesmann.de>
This commit is contained in:
parent
15418696ea
commit
66cda7e18f
@ -624,7 +624,7 @@ serial_term_send_msg(struct ipmi_intf * intf, uint8_t * msg, int msg_len)
|
||||
|
||||
/* body */
|
||||
for (i = 0; i < msg_len; i++) {
|
||||
buf += sprintf( buf, "%02x", msg[i]);
|
||||
buf += sprintf((char*) buf, "%02x", msg[i]);
|
||||
}
|
||||
|
||||
/* stop character */
|
||||
|
Loading…
x
Reference in New Issue
Block a user