blob: 082511a67b6328a1573b489d854519cb4863644d [file] [log] [blame]
Brad Bishop6e60e8b2018-02-01 10:27:11 -05001include sys/types.h for u_int32_t
2
3ui.c:340:5: error: unknown type name 'u_int32_t'; did you mean 'uint32_t'?
4 u_int32_t addr;
5 ^~~~~~~~~
Brad Bishop316dfdd2018-06-25 12:45:53 -04006Index: OpenIPMI-2.0.24/ui/ui.c
Brad Bishop6e60e8b2018-02-01 10:27:11 -05007===================================================================
Brad Bishop316dfdd2018-06-25 12:45:53 -04008--- OpenIPMI-2.0.24.orig/ui/ui.c
9+++ OpenIPMI-2.0.24/ui/ui.c
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010@@ -42,6 +42,7 @@
11 #include <fcntl.h>
12 #include <time.h>
13 #include <sys/time.h>
14+#include <sys/types.h>
15 #include <ctype.h>
16
Brad Bishop316dfdd2018-06-25 12:45:53 -040017 #include <OpenIPMI/ipmi_err.h>