summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorFelix Janda <felix.janda@posteo.de>2015-05-16 13:31:38 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2015-05-25 21:01:14 +0200
commitec02e05cf4d1bbb66ee31223f9e96c28bf3ae6f1 (patch)
tree571beaf3b2b81398d7eb8d7c84bf3eceaf58cb07 /src/main.c
parent32098096e759a2de36f104ac4ef79a14a328d8bf (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/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
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;