aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-05-27 11:44:03 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-05-27 11:44:03 +0000
commit595852f3b5fbcc82babed08b2d01e689219c4560 (patch)
treeeeddedabcdb6de7a904ebe442c60389267488a7d
parent0a56761f1942ca27e7a573a1a083e20910eba996 (diff)
downloadopenssl-595852f3b5fbcc82babed08b2d01e689219c4560.tar.gz
Avoid "duplicate const" warnings.
-rw-r--r--crypto/engine/eng_table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/engine/eng_table.c b/crypto/engine/eng_table.c
index 4f28abca34..e0709bef36 100644
--- a/crypto/engine/eng_table.c
+++ b/crypto/engine/eng_table.c
@@ -110,8 +110,8 @@ static int engine_pile_cmp(const ENGINE_PILE *a, const ENGINE_PILE *b)
{
return a->nid - b->nid;
}
-static IMPLEMENT_LHASH_HASH_FN(engine_pile, const ENGINE_PILE)
-static IMPLEMENT_LHASH_COMP_FN(engine_pile, const ENGINE_PILE)
+static IMPLEMENT_LHASH_HASH_FN(engine_pile, ENGINE_PILE)
+static IMPLEMENT_LHASH_COMP_FN(engine_pile, ENGINE_PILE)
static int int_table_check(ENGINE_TABLE **t, int create)
{