From 0f7b18e449ef8058d398e4b51321030da8039021 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 2 Apr 2004 21:09:46 +0000 Subject: [PATCH] case size_t to unsigned long for LP64 platforms git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13678 ec53bebd-3082-4978-b11e-865c3cabbd6b --- kdc/connect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kdc/connect.c b/kdc/connect.c index d4939a816..8faea4df6 100644 --- a/kdc/connect.c +++ b/kdc/connect.c @@ -721,8 +721,8 @@ handle_tcp(struct descr *d, int index, int min_free) krb5_warn(context, errno, "recvfrom"); return; } else if (n == 0) { - krb5_warnx(context, "connection closed before end of data after %d " - "bytes from %s to %s/%d", d[index].len, + krb5_warnx(context, "connection closed before end of data after %lu " + "bytes from %s to %s/%d", (unsigned long)d[index].len, d[index].addr_string, descr_type(d + index), ntohs(d[index].port)); clear_descr (d + index);