From: Richard Levitte Date: Tue, 16 Dec 2014 00:38:39 +0000 (+0100) Subject: Clear warnings/errors within BN_CTX_DEBUG code sections X-Git-Tag: master-post-reformat~146 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=a93891632d5074bcb59690989a2f017bf19a91a1 Clear warnings/errors within BN_CTX_DEBUG code sections Reviewed-by: Tim Hudson --- 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);