From ec8233054e7653e0c2d173c9600349d17170dc63 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Tue, 21 Aug 2001 10:10:25 +0000 Subject: [PATCH] (do_request): print size_t's correctly git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10508 ec53bebd-3082-4978-b11e-865c3cabbd6b --- kdc/connect.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kdc/connect.c b/kdc/connect.c index 58b4dab40..537bce98e 100644 --- a/kdc/connect.c +++ b/kdc/connect.c @@ -420,7 +420,8 @@ do_request(void *buf, size_t len, int sendlength, ret = process_request(buf, len, &reply, &sendlength, d->addr_string, d->sa); if(reply.length){ - kdc_log(5, "sending %d bytes to %s", reply.length, d->addr_string); + kdc_log(5, "sending %lu bytes to %s", (unsigned long)reply.length, + d->addr_string); if(sendlength){ unsigned char len[4]; len[0] = (reply.length >> 24) & 0xff;