From: Dr. Stephen Henson Date: Tue, 27 May 2008 11:44:03 +0000 (+0000) Subject: Avoid "duplicate const" warnings. X-Git-Tag: OpenSSL_0_9_8k^2~384 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=595852f3b5fbcc82babed08b2d01e689219c4560;hp=0a56761f1942ca27e7a573a1a083e20910eba996 Avoid "duplicate const" warnings. --- 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) {