diff options
author | Richard Levitte <levitte@openssl.org> | 2014-12-16 01:38:39 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2014-12-17 10:15:09 +0100 |
commit | a93891632d5074bcb59690989a2f017bf19a91a1 (patch) | |
tree | 7f44ad2dc50d5a2f3792dc63a7f6dbb63b3ce4f1 /crypto/bn/bn_ctx.c | |
parent | Check for invalid divisors in BN_div. (diff) | |
download | openssl-a93891632d5074bcb59690989a2f017bf19a91a1.tar.xz openssl-a93891632d5074bcb59690989a2f017bf19a91a1.zip |
Clear warnings/errors within BN_CTX_DEBUG code sections
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/bn/bn_ctx.c')
-rw-r--r-- | crypto/bn/bn_ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |