From a93891632d5074bcb59690989a2f017bf19a91a1 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 16 Dec 2014 01:38:39 +0100 Subject: [PATCH] Clear warnings/errors within BN_CTX_DEBUG code sections Reviewed-by: Tim Hudson --- crypto/bn/bn_ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bn/bn_ctx.c b/crypto/bn/bn_ctx.c index 9fe87519ee..d5eb02268d 100644 --- a/crypto/bn/bn_ctx.c +++ b/crypto/bn/bn_ctx.c @@ -159,7 +159,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); -- 2.34.1