Fix a compiler warning on prototype mismatch
Fix the warning:
wpa_supplicant.c:2257:5: warning: conflicting types for
‘wpas_update_random_addr’ due to enum/integer mismatch; have ‘int(struct
wpa_supplicant *, enum wpas_mac_addr_style, struct wpa_ssid *)’
[-Wenum-int-mismatch]
2257 | int wpas_update_random_addr(struct wpa_supplicant *wpa_s,
| ^~~~~~~~~~~~~~~~~~~~~~~
In file included from wpa_supplicant.c:32:
wpa_supplicant_i.h:1653:5: note: previous declaration of
‘wpas_update_random_addr’ with type ‘int(struct wpa_supplicant *, int,
struct wpa_ssid *)’
1653 | int wpas_update_random_addr(struct wpa_supplicant *wpa_s, int
style,
| ^~~~~~~~~~~~~~~~~~~~~~~
Fixes: 1d4027fdbe
("Make random MAC address style parameters use common enum values")
Signed-off-by: Chien Wong <m@xv97.com>
This commit is contained in:
parent
011775af94
commit
8f148d5132
1 changed files with 2 additions and 1 deletions
|
@ -1650,7 +1650,8 @@ int disallowed_ssid(struct wpa_supplicant *wpa_s, const u8 *ssid,
|
|||
void wpas_request_connection(struct wpa_supplicant *wpa_s);
|
||||
void wpas_request_disconnection(struct wpa_supplicant *wpa_s);
|
||||
int wpas_build_ext_capab(struct wpa_supplicant *wpa_s, u8 *buf, size_t buflen);
|
||||
int wpas_update_random_addr(struct wpa_supplicant *wpa_s, int style,
|
||||
int wpas_update_random_addr(struct wpa_supplicant *wpa_s,
|
||||
enum wpas_mac_addr_style style,
|
||||
struct wpa_ssid *ssid);
|
||||
int wpas_update_random_addr_disassoc(struct wpa_supplicant *wpa_s);
|
||||
void add_freq(int *freqs, int *num_freqs, int freq);
|
||||
|
|
Loading…
Reference in a new issue