From efa1d8e417ae5b685c206853aaa0e7f762574585 Mon Sep 17 00:00:00 2001 From: Felix Janda Date: Sat, 16 May 2015 14:59:57 +0200 Subject: src: Use stdint types everywhere Signed-off-by: Felix Janda Signed-off-by: Pablo Neira Ayuso --- src/rtnl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/rtnl.c') diff --git a/src/rtnl.c b/src/rtnl.c index 7b4ac7d..284eecd 100644 --- a/src/rtnl.c +++ b/src/rtnl.c @@ -30,7 +30,7 @@ #define rtnl_log(x, ...) static inline struct rtnl_handler * -find_handler(struct rtnl_handle *rtnl_handle, u_int16_t type) +find_handler(struct rtnl_handle *rtnl_handle, uint16_t type) { struct rtnl_handler *h; for (h = rtnl_handle->handlers; h; h = h->next) { @@ -41,7 +41,7 @@ find_handler(struct rtnl_handle *rtnl_handle, u_int16_t type) } static int call_handler(struct rtnl_handle *rtnl_handle, - u_int16_t type, + uint16_t type, struct nlmsghdr *hdr) { struct rtnl_handler *h = find_handler(rtnl_handle, type); -- cgit v1.2.3