aboutsummaryrefslogtreecommitdiffstats
path: root/main/openipmi/stdint.patch
blob: 5def30aad17b7045be705c1c2d4cdf56ec86411f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/ui/ui.c b/ui/ui.c
index 8dcb41d..7dc7284 100644
--- a/ui/ui.c
+++ b/ui/ui.c
@@ -337,7 +337,7 @@ get_uint(char **toks, unsigned int *val, char *errstr)
 static int
 get_ip_addr(char **toks, struct in_addr *ip_addr, char *errstr)
 {
-    u_int32_t     addr;
+    uint32_t      addr;
     unsigned char val;
     char          *str, *tmpstr, *istr;
     char          *ntok;