Browse Source

WPS: Fix a compiler warning in hostapd_wps_update_ie()

Jouni Malinen 14 years ago
parent
commit
cbbf4a1cc3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/ap/wps_hostapd.c

+ 1 - 1
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);
 }