aboutsummaryrefslogtreecommitdiffstats
path: root/g10/cipher-aead.c
diff options
context:
space:
mode:
Diffstat (limited to 'g10/cipher-aead.c')
-rw-r--r--g10/cipher-aead.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/cipher-aead.c b/g10/cipher-aead.c
index 8eea70372..640d8432f 100644
--- a/g10/cipher-aead.c
+++ b/g10/cipher-aead.c
@@ -295,9 +295,9 @@ do_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 %llu reached;"
" cur buflen=%zu using %zu of %zu\n",
- cfx->chunksize, cfx->buflen,
+ (unsigned long long)cfx->chunksize, cfx->buflen,
n1, n);
n = n1;
}