mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
use %zu instead of %zd
Requested by: Bruce Evans
This commit is contained in:
parent
2e30742814
commit
d13851aa7a
1 changed files with 2 additions and 2 deletions
|
|
@ -215,8 +215,8 @@ idmap_service(struct idmap_e * e)
|
|||
}
|
||||
|
||||
if (e->msg.msg_len != sizeof(struct idmap_msg)) {
|
||||
fprintf(stderr, "bad message length: %zd/%zd\n", e->msg.msg_len,
|
||||
sizeof(struct idmap_msg));
|
||||
fprintf(stderr, "bad message length: %zu/%zu\n", e->msg.msg_len,
|
||||
sizeof(struct idmap_msg));
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue