K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T17:09:05.462402Z K 7 svn:log V 649 Fix unused variable warning in acpica's nsaccess.c With clang 15, the following -Werror warning is produced: sys/contrib/dev/acpica/components/namespace/nsaccess.c:452:29: error: variable 'NumCarats' set but not used [-Werror,-Wunused-but-set-variable] UINT32 NumCarats; ^ Here, 'NumCarats' is a variable that is only used when debugging. Since acpica is contributed code, suppress the warning with a compile flag. MFC after: 3 days (cherry picked from commit 3c9a0112bae6408892123b04a6ba5c6ee0780937) Git Hash: 1b709e6fb254e370a7980eb0dc9ad665cfcde6ba Git Author: dim@FreeBSD.org END