From d13851aa7a18be09a01a68623ff8de9738118e2c Mon Sep 17 00:00:00 2001 From: Jim Rees Date: Thu, 15 Apr 2004 16:12:12 +0000 Subject: [PATCH] use %zu instead of %zd Requested by: Bruce Evans --- sbin/idmapd/idmapd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbin/idmapd/idmapd.c b/sbin/idmapd/idmapd.c index e32c38330a2..e5dbe80afb5 100644 --- a/sbin/idmapd/idmapd.c +++ b/sbin/idmapd/idmapd.c @@ -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; }