mirror of
https://github.com/servalproject/serval-dna.git
synced 2025-03-11 06:53:54 +00:00
Fix printf format warning on Android
This commit is contained in:
parent
81f641b1fe
commit
6e99a3be47
@ -1494,7 +1494,7 @@ static void mdp_poll2(struct sched_ent *alarm)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((size_t)len < sizeof header) {
|
if ((size_t)len < sizeof header) {
|
||||||
WHYF("Expected length %zu, got %zu from %s", sizeof header, len, alloca_socket_address(&client));
|
WHYF("Expected length %zu, got %zu from %s", sizeof header, (size_t)len, alloca_socket_address(&client));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user