diff --git a/daemon/nftables.c b/daemon/nftables.c index ed8dbd66f..2b88c6b3c 100644 --- a/daemon/nftables.c +++ b/daemon/nftables.c @@ -38,16 +38,12 @@ struct iterate_callbacks { // scratch area for rule callbacks, set to zero for every rule union { - struct { - bool match_immediate:1; - }; + bool match_immediate; } rule_scratch; // scratch area for rule iterating union { - struct { - GQueue handles; - }; + GQueue handles; } iterate_scratch; };