mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-19 05:07:56 +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;
|
||||
}
|
||||
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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user