From 825cc1ee2aadeae7248feb1c65aabc78e7b313f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Mon, 22 Aug 2005 14:05:20 +0000 Subject: [PATCH] Fix printing of size_t. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15942 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/test_crypto_wrapping.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/krb5/test_crypto_wrapping.c b/lib/krb5/test_crypto_wrapping.c index b0f9d2a66..7d85c86dd 100644 --- a/lib/krb5/test_crypto_wrapping.c +++ b/lib/krb5/test_crypto_wrapping.c @@ -73,8 +73,8 @@ test_wrapping(krb5_context context, ret = krb5_encrypt(context, crypto, 0, buf, size, &data); if (ret) - krb5_err(context, 1, ret, "encrypt size %d using %s", - size, etype_name); + krb5_err(context, 1, ret, "encrypt size %lu using %s", + (unsigned long)size, etype_name); wrapped_size = krb5_get_wrapped_length(context, crypto, size);