commit | 776fd04754056e9178187d5ea6ee9495e2c3f228 | [log] [tgz] |
---|---|---|
author | Giovanni Bajo <rasky@develer.com> | Thu Apr 26 14:37:10 2012 +0200 |
committer | Simon Kelley <simon@thekelleys.org.uk> | Tue Aug 20 15:41:20 2013 +0100 |
tree | c18185d3366eab7d672ce2c64d094c4bba3eca4f | |
parent | 20bccd499f6b4c7def62f78a7eb2d9e58275fd22 [diff] [blame] |
Add cast to silence warning.
diff --git a/src/dnssec-openssl.c b/src/dnssec-openssl.c index 3151cdb..e4cc3ea 100644 --- a/src/dnssec-openssl.c +++ b/src/dnssec-openssl.c
@@ -180,7 +180,7 @@ for (i = 0; i < POOL_SIZE; ++i) if (!(pool_used & (1 << i))) { - ret = &Pool[i]; + ret = (VerifyAlgCtx*)&Pool[i]; pool_used |= 1 << i; break; }