From ab3eafd5b5fbbb89fb500f05b8776f26a9f5e028 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sat, 31 May 2008 19:17:25 +0000 Subject: Stop warning about extra ';' outside of function. --- apps/openssl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/openssl.c b/apps/openssl.c index 2747b67197..dcfb796176 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -595,13 +595,13 @@ static int MS_CALLBACK function_cmp(const FUNCTION *a, const FUNCTION *b) { return strncmp(a->name,b->name,8); } -static IMPLEMENT_LHASH_COMP_FN(function, FUNCTION); +static IMPLEMENT_LHASH_COMP_FN(function, FUNCTION) static unsigned long MS_CALLBACK function_hash(const FUNCTION *a) { return lh_strhash(a->name); } -static IMPLEMENT_LHASH_HASH_FN(function, FUNCTION); +static IMPLEMENT_LHASH_HASH_FN(function, FUNCTION) static LHASH_OF(FUNCTION) *prog_init(void) { -- cgit v1.2.3