diff options
author | jkim <jkim@FreeBSD.org> | 2015-01-08 22:40:39 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2015-01-08 22:40:39 +0000 |
commit | a350427e88bc6ff288594c964ca0f57464062eb0 (patch) | |
tree | c2b36ecba3cb850d324786e97809c541cb5c2d5a /crypto/bn/bn_ctx.c | |
parent | 9a02b27a6e11c9667427250a26589d17ad31e847 (diff) | |
download | FreeBSD-src-a350427e88bc6ff288594c964ca0f57464062eb0.zip FreeBSD-src-a350427e88bc6ff288594c964ca0f57464062eb0.tar.gz |
Import OpenSSL 1.0.1k.
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 3f2256f..90aa3ae 100644 --- a/crypto/bn/bn_ctx.c +++ b/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); |