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 --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 82b2644..2cbf79e 100644 --- a/src/main.c +++ b/src/main.c @@ -13,7 +13,7 @@ #include "internal/internal.h" struct nfct_handle *nfct_open_nfnl(struct nfnl_handle *nfnlh, - u_int8_t subsys_id, + uint8_t subsys_id, unsigned int subscriptions) { struct nfct_handle *cth; @@ -81,7 +81,7 @@ out_free: * * On error, NULL is returned and errno is explicitly set. */ -struct nfct_handle *nfct_open(u_int8_t subsys_id, unsigned subscriptions) +struct nfct_handle *nfct_open(uint8_t subsys_id, unsigned subscriptions) { struct nfnl_handle *nfnlh = nfnl_open(); struct nfct_handle *nfcth; -- cgit v1.2.3