]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Avoid "duplicate const" warnings.
authorDr. Stephen Henson <steve@openssl.org>
Tue, 27 May 2008 11:44:03 +0000 (11:44 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Tue, 27 May 2008 11:44:03 +0000 (11:44 +0000)
crypto/engine/eng_table.c

index 4f28abca3401bd9cf29e7fc6612320cc50679969..e0709bef3643a936b39a67ab0ea9b1c7f3ecc1a0 100644 (file)
@@ -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)
        {