mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-05-10 10:37:22 +00:00
ID:354 - Replace obsolete u_int[0-9]+_t with standardized types in Free iface
This commit is contained in:
parent
104a7176ac
commit
6d4e2bb632
@ -203,12 +203,12 @@ static void ipmi_free_close(struct ipmi_intf * intf)
|
||||
|
||||
static struct ipmi_rs * ipmi_free_send_cmd(struct ipmi_intf * intf, struct ipmi_rq * req)
|
||||
{
|
||||
u_int8_t lun = req->msg.lun;
|
||||
u_int8_t cmd = req->msg.cmd;
|
||||
u_int8_t netfn = req->msg.netfn;
|
||||
u_int8_t rq_buf[IPMI_BUF_SIZE];
|
||||
u_int8_t rs_buf[IPMI_BUF_SIZE];
|
||||
u_int32_t rs_buf_len = IPMI_BUF_SIZE;
|
||||
uint8_t lun = req->msg.lun;
|
||||
uint8_t cmd = req->msg.cmd;
|
||||
uint8_t netfn = req->msg.netfn;
|
||||
uint8_t rq_buf[IPMI_BUF_SIZE];
|
||||
uint8_t rs_buf[IPMI_BUF_SIZE];
|
||||
uint32_t rs_buf_len = IPMI_BUF_SIZE;
|
||||
int32_t rs_len;
|
||||
|
||||
static struct ipmi_rs rsp;
|
||||
|
Loading…
x
Reference in New Issue
Block a user