aboutsummaryrefslogtreecommitdiffstats
path: root/g10/cipher.c
diff options
context:
space:
mode:
Diffstat (limited to 'g10/cipher.c')
-rw-r--r--g10/cipher.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/cipher.c b/g10/cipher.c
index 155ce45cd..7509915e5 100644
--- a/g10/cipher.c
+++ b/g10/cipher.c
@@ -436,9 +436,9 @@ do_ocb_flush (cipher_filter_context_t *cfx, iobuf_t a, byte *buf, size_t size)
size_t n1 = cfx->chunksize - (cfx->chunklen + cfx->buflen);
finalize = 1;
if (DBG_FILTER)
- log_debug ("chunksize %"PRIu64" reached;"
+ log_debug ("chunksize %zu reached;"
" cur buflen=%zu using %zu of %zu\n",
- cfx->chunksize, cfx->buflen,
+ (size_t)cfx->chunksize, cfx->buflen,
n1, n);
n = n1;
}