]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
ACS: Remove unreachable case from a debug print
authorJouni Malinen <jouni@qca.qualcomm.com>
Thu, 7 Jan 2016 14:50:53 +0000 (16:50 +0200)
committerJouni Malinen <j@w1.fi>
Thu, 7 Jan 2016 14:50:53 +0000 (16:50 +0200)
n_chans can have only values 1, 2, or 4 in this function, so the -1 case
could never be reached. Remove the unreachable case to get rid of static
analyzer warnings.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
src/ap/acs.c

index 0795af00b2092e87953f9da18461a308c602eab3..5e8380535854fd18fb837ac6b2f60f2555bf510a 100644 (file)
@@ -599,8 +599,7 @@ acs_find_ideal_chan(struct hostapd_iface *iface)
        wpa_printf(MSG_DEBUG, "ACS: Survey analysis for selected bandwidth %d MHz",
                   n_chans == 1 ? 20 :
                   n_chans == 2 ? 40 :
-                  n_chans == 4 ? 80 :
-                  -1);
+                  80);
 
        for (i = 0; i < iface->current_mode->num_channels; i++) {
                double total_weight;