From c9337b31f756cae85299c8275b21088ce02885e2 Mon Sep 17 00:00:00 2001 From: Felix Janda Date: Wed, 24 Jun 2015 19:53:34 +0200 Subject: Use stdint types everywhere Signed-off-by: Felix Janda --- filter/ulogd_filter_IP2HBIN.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'filter/ulogd_filter_IP2HBIN.c') diff --git a/filter/ulogd_filter_IP2HBIN.c b/filter/ulogd_filter_IP2HBIN.c index 4fd3ff1..087e824 100644 --- a/filter/ulogd_filter_IP2HBIN.c +++ b/filter/ulogd_filter_IP2HBIN.c @@ -116,8 +116,8 @@ static int interp_ip2hbin(struct ulogd_pluginstance *pi) { struct ulogd_key *ret = pi->output.keys; struct ulogd_key *inp = pi->input.keys; - u_int8_t family = ikey_get_u8(&inp[KEY_OOB_FAMILY]); - u_int8_t convfamily = family; + uint8_t family = ikey_get_u8(&inp[KEY_OOB_FAMILY]); + uint8_t convfamily = family; int i; switch (family) { -- cgit v1.2.3