aboutsummaryrefslogtreecommitdiff
path: root/crypto/bn/bn_ctx.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2014-12-16 01:38:39 +0100
committerRichard Levitte <levitte@openssl.org>2014-12-17 10:15:09 +0100
commita93891632d5074bcb59690989a2f017bf19a91a1 (patch)
tree7f44ad2dc50d5a2f3792dc63a7f6dbb63b3ce4f1 /crypto/bn/bn_ctx.c
parenta015758d11f8fd2171a3b73be60e90bed1bd857e (diff)
downloadopenssl-a93891632d5074bcb59690989a2f017bf19a91a1.zip
openssl-a93891632d5074bcb59690989a2f017bf19a91a1.tar.gz
openssl-a93891632d5074bcb59690989a2f017bf19a91a1.tar.bz2
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_ctx.c b/crypto/bn/bn_ctx.c
index 9fe8751..d5eb022 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);