P2P: Fix compilation warning in p2p_supplicant.c
authorMax Stepanov <Max.Stepanov@intel.com>
Tue, 6 Sep 2016 06:44:33 +0000 (09:44 +0300)
committerJouni Malinen <j@w1.fi>
Thu, 22 Sep 2016 20:33:44 +0000 (23:33 +0300)
On some architectures unsigned int differs from size_t, and
some compilers warn about it.

Signed-off-by: Max Stepanov <Max.Stepanov@intel.com>
wpa_supplicant/p2p_supplicant.c

index b89d43e..b1fdc28 100644 (file)
@@ -3369,7 +3369,7 @@ static int wpas_p2p_get_center_80mhz(struct wpa_supplicant *wpa_s,
                                     u8 channel)
 {
        u8 center_channels[] = { 42, 58, 106, 122, 138, 155 };
                                     u8 channel)
 {
        u8 center_channels[] = { 42, 58, 106, 122, 138, 155 };
-       unsigned int i;
+       size_t i;
 
        if (mode->mode != HOSTAPD_MODE_IEEE80211A)
                return 0;
 
        if (mode->mode != HOSTAPD_MODE_IEEE80211A)
                return 0;