From 595852f3b5fbcc82babed08b2d01e689219c4560 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Tue, 27 May 2008 11:44:03 +0000 Subject: [PATCH] Avoid "duplicate const" warnings. --- crypto/engine/eng_table.c | 4 ++-- 1 file 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) { -- 2.25.1