Date: Sat, 23 Jul 2022 08:58:22 GMT From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: c3361a4b90b6 - stable/13 - Suppress unused variable warning in if_malo.c Message-ID: <202207230858.26N8wMil012734@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by dim: URL: https://cgit.FreeBSD.org/src/commit/?id=c3361a4b90b60093ea0c4ab197e462299b3d3f45 commit c3361a4b90b60093ea0c4ab197e462299b3d3f45 Author: Dimitry Andric <dim@FreeBSD.org> AuthorDate: 2022-07-19 19:17:03 +0000 Commit: Dimitry Andric <dim@FreeBSD.org> CommitDate: 2022-07-23 08:56:45 +0000 Suppress unused variable warning in if_malo.c With clang 15, the following -Werror warning is produced: sys/dev/malo/if_malo.c:1573:8: error: variable 'ix' set but not used [-Werror,-Wunused-but-set-variable] u_int ix; ^ Here, 'ix' is a variable that is only used when MALO_DEBUG is defined. Mark the variable as potentially unused, to suppress the warning. MFC after: 3 days (cherry picked from commit 218634014374de0032fcdd56656ed6b3650634d2) --- sys/dev/malo/if_malo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/malo/if_malo.c b/sys/dev/malo/if_malo.c index 0b5d7e9d950d..2c397e1fe6d4 100644 --- a/sys/dev/malo/if_malo.c +++ b/sys/dev/malo/if_malo.c @@ -1573,7 +1573,7 @@ malo_tx_draintxq(struct malo_softc *sc, struct malo_txq *txq) { struct ieee80211_node *ni; struct malo_txbuf *bf; - u_int ix; + u_int ix __unused; /* * NB: this assumes output has been stopped and
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202207230858.26N8wMil012734>