mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-18 02:44:03 -05:00
Removed printf size_t format warning on 64-bit
This commit is contained in:
parent
6dbcd00912
commit
745cb54e86
@ -476,8 +476,8 @@ static void wpa_driver_privsep_receive(int sock, void *eloop_ctx,
|
||||
os_memcpy(&event, buf, sizeof(int));
|
||||
event_buf = &buf[sizeof(int)];
|
||||
event_len = res - sizeof(int);
|
||||
wpa_printf(MSG_DEBUG, "privsep: Event %d received (len=%d)",
|
||||
event, event_len);
|
||||
wpa_printf(MSG_DEBUG, "privsep: Event %d received (len=%lu)",
|
||||
event, (unsigned long) event_len);
|
||||
|
||||
e = event;
|
||||
switch (e) {
|
||||
|
Loading…
Reference in New Issue
Block a user