mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-18 10:54:03 -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);
|
||||
}
|
||||
|
||||
wpa_printf(MSG_MSGDUMP, "Received %d bytes of scan results (%d BSSes)",
|
||||
wsr->buflen, ap_num);
|
||||
wpa_printf(MSG_MSGDUMP, "Received %d bytes of scan results (%lu "
|
||||
"BSSes)",
|
||||
wsr->buflen, (unsigned long) ap_num);
|
||||
|
||||
os_free(buf);
|
||||
return ap_num;
|
||||
|
Loading…
Reference in New Issue
Block a user