mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-18 19:04:02 -05:00
Fixed size_t printf format for 64-bit builds
This commit is contained in:
parent
ea6380e7c9
commit
bd1d13c199
@ -488,8 +488,9 @@ wpa_driver_broadcom_get_scan_results(void *priv,
|
|||||||
wbi = (wl_bss_info_t *) ((u8 *) wbi + wbi->length);
|
wbi = (wl_bss_info_t *) ((u8 *) wbi + wbi->length);
|
||||||
}
|
}
|
||||||
|
|
||||||
wpa_printf(MSG_MSGDUMP, "Received %d bytes of scan results (%d BSSes)",
|
wpa_printf(MSG_MSGDUMP, "Received %d bytes of scan results (%lu "
|
||||||
wsr->buflen, ap_num);
|
"BSSes)",
|
||||||
|
wsr->buflen, (unsigned long) ap_num);
|
||||||
|
|
||||||
os_free(buf);
|
os_free(buf);
|
||||||
return ap_num;
|
return ap_num;
|
||||||
|
Loading…
Reference in New Issue
Block a user