diff options
Diffstat (limited to 'main/openssl/crypto/bn/bn_ctx.c')
-rw-r--r-- | main/openssl/crypto/bn/bn_ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/openssl/crypto/bn/bn_ctx.c b/main/openssl/crypto/bn/bn_ctx.c index 3f2256f6..90aa3aeb 100644 --- a/main/openssl/crypto/bn/bn_ctx.c +++ b/main/openssl/crypto/bn/bn_ctx.c @@ -158,7 +158,7 @@ static void ctxdbg(BN_CTX *ctx) unsigned int bnidx = 0, fpidx = 0; BN_POOL_ITEM *item = ctx->pool.head; BN_STACK *stack = &ctx->stack; - fprintf(stderr,"(%08x): ", (unsigned int)ctx); + fprintf(stderr,"(%16p): ", ctx); while(bnidx < ctx->used) { fprintf(stderr,"%03x ", item->vals[bnidx++ % BN_CTX_POOL_SIZE].dmax); |