summaryrefslogtreecommitdiffstats
path: root/src/iftable.c
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/iftable.c
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/iftable.c')
-rw-r--r--src/iftable.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/iftable.c b/src/iftable.c
index 5976ed8..157f97b 100644
--- a/src/iftable.c
+++ b/src/iftable.c
@@ -27,10 +27,10 @@
struct ifindex_node {
struct list_head head;
- u_int32_t index;
- u_int32_t type;
- u_int32_t alen;
- u_int32_t flags;
+ uint32_t index;
+ uint32_t type;
+ uint32_t alen;
+ uint32_t flags;
char addr[8];
char name[16];
};