K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T17:11:04.709814Z K 7 svn:log V 687 Fix unused variable warning in icl_soft.c With clang 15, the following -Werror warning is produced: sys/dev/iscsi//icl_soft.c:886:6: error: variable 'coalesced' set but not used [-Werror,-Wunused-but-set-variable] int coalesced, error; ^ The 'coalesced' variable is eventually used only in an #if 0'd block, obviously meant for debugging. Ensure that 'coalesced' is only declared and used when DEBUG_COALESCED is defined, so the debugging can be easily turned on later, if desired. MFC after: 3 days (cherry picked from commit f4f847018048ac7699b55bc1915a393eb65e4c53) Git Hash: f14c6e0789b990c5df40f6b09015ba17ec1e3f6d Git Author: dim@FreeBSD.org END