diff options
author | Werner Koch <[email protected]> | 2018-11-16 15:57:09 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2018-11-16 15:57:09 +0000 |
commit | cf423864062a2677d0eeabbb11462a788f527b4c (patch) | |
tree | e00dc76f2a2ffc47858880631ddefe13be13fbd1 /src/verify.c | |
parent | core: Remove old debug helper function (diff) | |
download | gpgme-cf423864062a2677d0eeabbb11462a788f527b4c.tar.gz gpgme-cf423864062a2677d0eeabbb11462a788f527b4c.zip |
core: Fix format string errors in trace macros
--
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'src/verify.c')
-rw-r--r-- | src/verify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verify.c b/src/verify.c index 78e549ed..8aa9d281 100644 --- a/src/verify.c +++ b/src/verify.c @@ -135,7 +135,7 @@ gpgme_op_verify_result (gpgme_ctx_t ctx) { TRACE_LOG ("sig[%i] = fpr %s, summary 0x%x, status %s", i, sig->fpr, sig->summary, gpg_strerror (sig->status)); - TRACE_LOG ("sig[%i] = timestamps 0x%x/0x%x flags:%s%s%s", + TRACE_LOG ("sig[%i] = timestamps 0x%lx/0x%lx flags:%s%s%s", i, sig->timestamp, sig->exp_timestamp, sig->wrong_key_usage ? "wrong key usage" : "", sig->pka_trust == 1 ? "pka bad" |