use %zu instead of %zd

Requested by:	Bruce Evans
This commit is contained in:
Jim Rees 2004-04-15 16:12:12 +00:00
parent 2e30742814
commit d13851aa7a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=128285

View File

@ -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;
}