Avoid warnings with -pedantic, specifically:
[oweals/openssl.git] / apps / openssl.c
index dcfb796176c57c82ca4618d8add12735323ab7b6..8323b5965959bfc12597cd49b3f7cd0885ff1bff 100644 (file)
@@ -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);
        }