aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2022-07-19 19:38:41 +0000
committerDimitry Andric <dim@FreeBSD.org>2022-07-20 15:13:49 +0000
commit3dbe05f61b65a73582aefdc2ee5a50ad2b4390ef (patch)
treebdf05e1cf4be98d6c73ef6b964b63c2f35e34720
parent218634014374de0032fcdd56656ed6b3650634d2 (diff)
downloadsrc-3dbe05f61b65a73582aefdc2ee5a50ad2b4390ef.tar.gz
src-3dbe05f61b65a73582aefdc2ee5a50ad2b4390ef.zip
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
-rw-r--r--sys/dev/mfi/mfi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mfi/mfi.c b/sys/dev/mfi/mfi.c
index 556d2a9a3fbe..3158cd096589 100644
--- a/sys/dev/mfi/mfi.c
+++ b/sys/dev/mfi/mfi.c
@@ -3695,7 +3695,7 @@ mfi_dump_all(void)
struct mfi_command *cm;
devclass_t dc;
time_t deadline;
- int timedout;
+ int timedout __unused;
int i;
dc = devclass_find("mfi");
@@ -3739,7 +3739,7 @@ mfi_timeout(void *data)
struct mfi_softc *sc = (struct mfi_softc *)data;
struct mfi_command *cm, *tmp;
time_t deadline;
- int timedout = 0;
+ int timedout __unused = 0;
deadline = time_uptime - mfi_cmd_timeout;
if (sc->adpreset == 0) {