On Tue, Apr 27, 2021 at 09:45:18PM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann <arnd@xxxxxxxx> > > The variable is only used in an #ifdef, causing a harmless warning: > > net/netfilter/nft_socket.c: In function 'nft_socket_init': > net/netfilter/nft_socket.c:137:27: error: unused variable 'level' [-Werror=unused-variable] > 137 | unsigned int len, level; > | ^~~~~ > > Move it into the same #ifdef block. Applied, thanks Arnd.