summaryrefslogtreecommitdiffstats
path: root/src/rtnl.h
diff options
context:
space:
mode:
authorFelix Janda <felix.janda@posteo.de>2015-05-16 14:59:57 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2015-05-29 00:47:49 +0200
commitefa1d8e417ae5b685c206853aaa0e7f762574585 (patch)
tree65d34a349c89992a9fb1a1f3f5e9e1c4ca4c0a09 /src/rtnl.h
parent7a1a07c0028a1c88cd7716a058697c552a563b24 (diff)
src: Use stdint types everywhere
Signed-off-by: Felix Janda <felix.janda@posteo.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/rtnl.h')
-rw-r--r--src/rtnl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtnl.h b/src/rtnl.h
index 0c403dc..2cb22a8 100644
--- a/src/rtnl.h
+++ b/src/rtnl.h
@@ -7,7 +7,7 @@
struct rtnl_handler {
struct rtnl_handler *next;
- u_int16_t nlmsg_type;
+ uint16_t nlmsg_type;
int (*handlefn)(struct nlmsghdr *h, void *arg);
void *arg;
};