Fix printing of size_t.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15942 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-08-22 14:05:20 +00:00
parent 96ebe5947e
commit 825cc1ee2a

View File

@@ -73,8 +73,8 @@ test_wrapping(krb5_context context,
ret = krb5_encrypt(context, crypto, 0, buf, size, &data); ret = krb5_encrypt(context, crypto, 0, buf, size, &data);
if (ret) if (ret)
krb5_err(context, 1, ret, "encrypt size %d using %s", krb5_err(context, 1, ret, "encrypt size %lu using %s",
size, etype_name); (unsigned long)size, etype_name);
wrapped_size = krb5_get_wrapped_length(context, crypto, size); wrapped_size = krb5_get_wrapped_length(context, crypto, size);