K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T17:09:01.150972Z K 7 svn:log V 764 Suppress unused variable warning in mfi.c With clang 15, the following -Werror warnings are produced: sys/dev/mfi/mfi.c:3698:6: error: variable 'timedout' set but not used [-Werror,-Wunused-but-set-variable] int timedout; ^ sys/dev/mfi/mfi.c:3742:6: error: variable 'timedout' set but not used [-Werror,-Wunused-but-set-variable] int timedout = 0; ^ Here, 'timedout' are variables that are only used when debugging, requiring #if 0 statements to be modified. Mark the variables as potentially unused, to suppress the warnings. MFC after: 3 days (cherry picked from commit 3dbe05f61b65a73582aefdc2ee5a50ad2b4390ef) Git Hash: 4659a5a15ee201e582f0e211e7f40bb42bd3a3ed Git Author: dim@FreeBSD.org END