Signed-off-by: Felix Janda <felix.janda@xxxxxxxxx> --- include/libnfnetlink/linux_nfnetlink.h | 4 ++-- include/libnfnetlink/linux_nfnetlink_compat.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/libnfnetlink/linux_nfnetlink.h b/include/libnfnetlink/linux_nfnetlink.h index f7af94f..c5c15ba 100644 --- a/include/libnfnetlink/linux_nfnetlink.h +++ b/include/libnfnetlink/linux_nfnetlink.h @@ -29,8 +29,8 @@ enum nfnetlink_groups { /* General form of address family dependent message. */ struct nfgenmsg { - __u8 nfgen_family; /* AF_xxx */ - __u8 version; /* nfnetlink version */ + uint8_t nfgen_family; /* AF_xxx */ + uint8_t version; /* nfnetlink version */ u_int16_t res_id; /* resource id */ }; diff --git a/include/libnfnetlink/linux_nfnetlink_compat.h b/include/libnfnetlink/linux_nfnetlink_compat.h index 74b9e55..c981044 100644 --- a/include/libnfnetlink/linux_nfnetlink_compat.h +++ b/include/libnfnetlink/linux_nfnetlink_compat.h @@ -21,8 +21,8 @@ */ struct nfattr { - __u16 nfa_len; - __u16 nfa_type; /* we use 15 bits for the type, and the highest + uint16_t nfa_len; + uint16_t nfa_type; /* we use 15 bits for the type, and the highest * bit to indicate whether the payload is nested */ }; -- 2.3.6 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html