Loop index variable was left in place after removing the loops. Fixes: 39ec645093baa ("nft: cache: Simplify chain list allocation") Signed-off-by: Phil Sutter <phil@xxxxxx> --- iptables/nft-cache.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/iptables/nft-cache.c b/iptables/nft-cache.c index 0dd131e1f70f5..e3c9655739187 100644 --- a/iptables/nft-cache.c +++ b/iptables/nft-cache.c @@ -331,7 +331,7 @@ static int fetch_chain_cache(struct nft_handle *h, }; char buf[16536]; struct nlmsghdr *nlh; - int i, ret; + int ret; if (t && chain) { struct nftnl_chain *c = nftnl_chain_alloc(); @@ -516,8 +516,6 @@ void nft_build_cache(struct nft_handle *h, struct nftnl_chain *c) void nft_fake_cache(struct nft_handle *h) { - int i; - fetch_table_cache(h); init_chain_cache(h); -- 2.25.1