diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2008-02-28 15:05:01 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2008-02-28 15:05:01 +0100 |
commit | 56c7754cab3da9745e52e36b0bf998f8356fd6d5 (patch) | |
tree | 2662cabb231e7746ad33b8d55e90dbf4b2add3d2 /crypto/ex_data.c | |
parent | Fix error code function name mismatches in GOST engine, rebuild errors. (diff) | |
download | openssl-56c7754cab3da9745e52e36b0bf998f8356fd6d5.tar.xz openssl-56c7754cab3da9745e52e36b0bf998f8356fd6d5.zip |
Avoid warnings.
Diffstat (limited to 'crypto/ex_data.c')
-rw-r--r-- | crypto/ex_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ex_data.c b/crypto/ex_data.c index 8914218fe8..3b11e7a556 100644 --- a/crypto/ex_data.c +++ b/crypto/ex_data.c @@ -354,7 +354,7 @@ static int def_add_index(EX_CLASS_ITEM *item, long argl, void *argp, } } toret = item->meth_num++; - sk_CRYPTO_EX_DATA_FUNCS_set(item->meth, toret, a); + (void)sk_CRYPTO_EX_DATA_FUNCS_set(item->meth, toret, a); err: CRYPTO_w_unlock(CRYPTO_LOCK_EX_DATA); return toret; |