From d4cdbab99b8ead6ae2462d6b452f8b2462ca8733 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Fri, 4 Jul 2008 23:12:52 +0000 Subject: Avoid warnings with -pedantic, specifically: Conversion between void * and function pointer. Value computed not used. Signed/unsigned argument. --- apps/openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/openssl.c b/apps/openssl.c index dcfb796176..8323b59659 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -618,7 +618,7 @@ static LHASH_OF(FUNCTION) *prog_init(void) return(NULL); for (f=functions; f->name != NULL; f++) - lh_FUNCTION_insert(ret,f); + (void)lh_FUNCTION_insert(ret,f); return(ret); } -- cgit v1.2.3