summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-07-04 23:12:52 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-07-04 23:12:52 +0000
commitd4cdbab99b8ead6ae2462d6b452f8b2462ca8733 (patch)
tree293758bf967241b3621e2cc8af8d52907c06ff07 /crypto/engine
parent5f834ab123af6444b7cffe21849e434ad6479f8a (diff)
Avoid warnings with -pedantic, specifically:
Conversion between void * and function pointer. Value computed not used. Signed/unsigned argument.
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/engine/eng_table.c b/crypto/engine/eng_table.c
index e0709bef36..954b4d7970 100644
--- a/crypto/engine/eng_table.c
+++ b/crypto/engine/eng_table.c
@@ -157,7 +157,7 @@ int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup,
goto end;
}
fnd->funct = NULL;
- lh_ENGINE_PILE_insert(&(*table)->piles, fnd);
+ (void)lh_ENGINE_PILE_insert(&(*table)->piles, fnd);
}
/* A registration shouldn't add duplciate entries */
(void)sk_ENGINE_delete_ptr(fnd->sk, e);