K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T18:50:57.481563Z K 7 svn:log V 582 Fix unused variable warning in netipsec's key_debug.c With clang 15, the following -Werror warning is produced: sys/netipsec/key_debug.c:923:9: error: variable 'j' set but not used [-Werror,-Wunused-but-set-variable] int i, j; ^ The 'j' variable was in key_debug.c when it was first added, but it appears to have been a debugging aid that has never been used, so remove it. MFC after: 3 days (cherry picked from commit c01fdd7a9f316c8c04786441ca0113be002b96be) Git Hash: 1cb6fa98d8e2bdf719b1a7fc87091391a7282e40 Git Author: dim@FreeBSD.org END