aboutsummaryrefslogtreecommitdiff
path: root/networking/libiproute/utils.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-01-30 22:59:50 +0000
committerEric Andersen <andersen@codepoet.org>2004-01-30 22:59:50 +0000
commit1a834be1ce792252d55b090ee806a466fe9ac4fa (patch)
treeb8cfe27eec2f3536110c2976ef096e6bd595be6b /networking/libiproute/utils.h
parentd242079387b33d11612efe2487a01c4557198c3f (diff)
downloadbusybox-1a834be1ce792252d55b090ee806a466fe9ac4fa.tar.gz
Use proper C99 types
Diffstat (limited to 'networking/libiproute/utils.h')
-rw-r--r--networking/libiproute/utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/utils.h b/networking/libiproute/utils.h
index dc28c1b6a..b51e07be4 100644
--- a/networking/libiproute/utils.h
+++ b/networking/libiproute/utils.h
@@ -52,8 +52,8 @@ struct dn_naddr
#define IPX_NODE_LEN 6
struct ipx_addr {
- u_int32_t ipx_net;
- u_int8_t ipx_node[IPX_NODE_LEN];
+ uint32_t ipx_net;
+ uint8_t ipx_node[IPX_NODE_LEN];
};
extern __u32 get_addr32(char *name);