From 03d2b53c97f7c126af7c6b22e052204f1808d43c Mon Sep 17 00:00:00 2001 From: Alexander Amelkin Date: Tue, 21 Aug 2018 18:18:07 +0300 Subject: [PATCH] strings: Refix 329ebdff: Enlarge data type Make val in valstr 32-bit to accomodate the values added by commit 329ebdff. Signed-off-by: Alexander Amelkin --- include/ipmitool/helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ipmitool/helper.h b/include/ipmitool/helper.h index 9d92ede..1a464a8 100644 --- a/include/ipmitool/helper.h +++ b/include/ipmitool/helper.h @@ -63,7 +63,7 @@ struct ipmi_intf; struct valstr { - uint16_t val; + uint32_t val; const char * str; }; struct oemvalstr {