Browse Source

winreg: Get rid of compiler warning

Jouni Malinen 14 years ago
parent
commit
de1267d4eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      wpa_supplicant/config_winreg.c

+ 1 - 1
wpa_supplicant/config_winreg.c

@@ -258,7 +258,7 @@ static int wpa_config_read_global(struct wpa_config *config, HKEY hk)
 #endif /* CONFIG_WPS */
 
 	wpa_config_read_reg_dword(hk, TEXT("bss_max_count"),
-				  &config->bss_max_count);
+				  (int *) &config->bss_max_count);
 	wpa_config_read_reg_dword(hk, TEXT("filter_ssids"),
 				  &config->filter_ssids);