diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-01-30 22:59:50 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2004-01-30 22:59:50 +0000 |
commit | eae2f616ef03261f065d10e2f1e50cae51baf2cb (patch) | |
tree | b8cfe27eec2f3536110c2976ef096e6bd595be6b | |
parent | 0c1859827ec320dc049de3dd1f0b8e0d6b5ed14d (diff) | |
download | busybox-w32-eae2f616ef03261f065d10e2f1e50cae51baf2cb.tar.gz busybox-w32-eae2f616ef03261f065d10e2f1e50cae51baf2cb.tar.bz2 busybox-w32-eae2f616ef03261f065d10e2f1e50cae51baf2cb.zip |
Use proper C99 types
git-svn-id: svn://busybox.net/trunk/busybox@8378 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r-- | networking/libiproute/utils.h | 4 |
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 | |||
52 | #define IPX_NODE_LEN 6 | 52 | #define IPX_NODE_LEN 6 |
53 | 53 | ||
54 | struct ipx_addr { | 54 | struct ipx_addr { |
55 | u_int32_t ipx_net; | 55 | uint32_t ipx_net; |
56 | u_int8_t ipx_node[IPX_NODE_LEN]; | 56 | uint8_t ipx_node[IPX_NODE_LEN]; |
57 | }; | 57 | }; |
58 | 58 | ||
59 | extern __u32 get_addr32(char *name); | 59 | extern __u32 get_addr32(char *name); |