From ec02e05cf4d1bbb66ee31223f9e96c28bf3ae6f1 Mon Sep 17 00:00:00 2001 From: Felix Janda Date: Sat, 16 May 2015 13:31:38 +0200 Subject: src: Use stdint types everywhere Signed-off-by: Felix Janda Signed-off-by: Pablo Neira Ayuso --- qa/ct_mark_filter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qa/ct_mark_filter.c') diff --git a/qa/ct_mark_filter.c b/qa/ct_mark_filter.c index 276344a..cd6dd27 100644 --- a/qa/ct_mark_filter.c +++ b/qa/ct_mark_filter.c @@ -12,7 +12,7 @@ static void tcp_echo_before_fin(const struct mnl_socket *nl, const char *pre, const char *post) { - u_int8_t proto = IPPROTO_TCP; + uint8_t proto = IPPROTO_TCP; sync_fifo(pre); timeout.tv_sec = INIT_TIMEOUT; @@ -26,7 +26,7 @@ static void tcp_echo_before_fin(const struct mnl_socket *nl, static void tcp_echo_after_fin(const struct mnl_socket *nl, const char *pre, const char *post) { - u_int8_t proto = IPPROTO_TCP; + uint8_t proto = IPPROTO_TCP; sync_fifo(pre); timeout.tv_sec = INIT_TIMEOUT; -- cgit v1.2.3