From: Jouni Malinen Date: Wed, 20 Oct 2010 10:35:55 +0000 (+0300) Subject: WPS: Fix a compiler warning in hostapd_wps_update_ie() X-Git-Tag: hostap-1-bp~947 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbbf4a1cc3f3341b0ffe0d3caeae4fa2560feb64;p=thirdparty%2Fhostap.git WPS: Fix a compiler warning in hostapd_wps_update_ie() --- diff --git a/src/ap/wps_hostapd.c b/src/ap/wps_hostapd.c index 7ff9aa0c0..f4cbd5e61 100644 --- a/src/ap/wps_hostapd.c +++ b/src/ap/wps_hostapd.c @@ -1284,5 +1284,5 @@ static int wps_update_ie(struct hostapd_data *hapd, void *ctx) void hostapd_wps_update_ie(struct hostapd_data *hapd) { - return hostapd_wps_for_each(hapd, wps_update_ie, NULL); + hostapd_wps_for_each(hapd, wps_update_ie, NULL); }