From a15822844f1e9b63e2050984912cedac48c0157c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Mon, 4 Apr 2005 17:54:50 +0000 Subject: [PATCH] print size_t by casting to unsigned long git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14736 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/test_crypto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/krb5/test_crypto.c b/lib/krb5/test_crypto.c index a032354b9..4d29d7e9e 100644 --- a/lib/krb5/test_crypto.c +++ b/lib/krb5/test_crypto.c @@ -79,8 +79,8 @@ time_encryption(krb5_context context, size_t size, timevalsub(&tv2, &tv1); - printf("%s size: %7d iterations: %d time: %3ld.%06ld\n", - etype_name, size, iterations, + printf("%s size: %7lu iterations: %d time: %3ld.%06ld\n", + etype_name, (unsigned long)size, iterations, (long)tv2.tv_sec, (long)tv2.tv_usec); krb5_crypto_destroy(context, crypto);