diff options
Diffstat (limited to 'networking/libiproute/libnetlink.c')
-rw-r--r-- | networking/libiproute/libnetlink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/libiproute/libnetlink.c b/networking/libiproute/libnetlink.c index c7e17e1dd..969648067 100644 --- a/networking/libiproute/libnetlink.c +++ b/networking/libiproute/libnetlink.c | |||
@@ -319,7 +319,7 @@ int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, pid_t peer, | |||
319 | } | 319 | } |
320 | } | 320 | } |
321 | 321 | ||
322 | int addattr32(struct nlmsghdr *n, int maxlen, int type, __u32 data) | 322 | int addattr32(struct nlmsghdr *n, int maxlen, int type, uint32_t data) |
323 | { | 323 | { |
324 | int len = RTA_LENGTH(4); | 324 | int len = RTA_LENGTH(4); |
325 | struct rtattr *rta; | 325 | struct rtattr *rta; |
@@ -348,7 +348,7 @@ int addattr_l(struct nlmsghdr *n, int maxlen, int type, void *data, int alen) | |||
348 | return 0; | 348 | return 0; |
349 | } | 349 | } |
350 | 350 | ||
351 | int rta_addattr32(struct rtattr *rta, int maxlen, int type, __u32 data) | 351 | int rta_addattr32(struct rtattr *rta, int maxlen, int type, uint32_t data) |
352 | { | 352 | { |
353 | int len = RTA_LENGTH(4); | 353 | int len = RTA_LENGTH(4); |
354 | struct rtattr *subrta; | 354 | struct rtattr *subrta; |