diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-31 18:57:37 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-31 18:57:37 +0000 |
commit | 645de6d456ea0bd583ce728a51c2c5ed68c4eaef (patch) | |
tree | 0f5cafbb22cd83fb73e024acba658c7a51582951 /networking/libiproute/rtm_map.c | |
parent | 6d90558d35437d175b7b45838e3f2930253e9a94 (diff) | |
download | busybox-w32-645de6d456ea0bd583ce728a51c2c5ed68c4eaef.tar.gz busybox-w32-645de6d456ea0bd583ce728a51c2c5ed68c4eaef.tar.bz2 busybox-w32-645de6d456ea0bd583ce728a51c2c5ed68c4eaef.zip |
stop using __u32 etc. uint32_t is there for a reason
git-svn-id: svn://busybox.net/trunk/busybox@17117 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'networking/libiproute/rtm_map.c')
-rw-r--r-- | networking/libiproute/rtm_map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/rtm_map.c b/networking/libiproute/rtm_map.c index 8aaee4bd7..7eb4c7122 100644 --- a/networking/libiproute/rtm_map.c +++ b/networking/libiproute/rtm_map.c | |||
@@ -88,9 +88,9 @@ int rtnl_rtntype_a2n(int *id, char *arg) | |||
88 | return 0; | 88 | return 0; |
89 | } | 89 | } |
90 | 90 | ||
91 | int get_rt_realms(__u32 *realms, char *arg) | 91 | int get_rt_realms(uint32_t *realms, char *arg) |
92 | { | 92 | { |
93 | __u32 realm = 0; | 93 | uint32_t realm = 0; |
94 | char *p = strchr(arg, '/'); | 94 | char *p = strchr(arg, '/'); |
95 | 95 | ||
96 | *realms = 0; | 96 | *realms = 0; |