Clang warns: netlink.c:806:26: error: implicit conversion from enumeration type 'enum nft_data_types' to different enumeration type 'enum datatypes' [-Werror,-Wenum-conversion] return datatype_lookup(type); ~~~~~~~~~~~~~~~ ^~~~ Signed-off-by: Thomas Haller <thaller@xxxxxxxxxx> --- src/netlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netlink.c b/src/netlink.c index e1904a99d3ba..1afe162ec79b 100644 --- a/src/netlink.c +++ b/src/netlink.c @@ -803,7 +803,7 @@ static const struct datatype *dtype_map_from_kernel(enum nft_data_types type) default: if (type & ~TYPE_MASK) return concat_type_alloc(type); - return datatype_lookup(type); + return datatype_lookup((enum datatypes) type); } } -- 2.41.0