First step in tidying up the LHASH code. The callback prototypes (and
[openssl.git] / crypto / conf / conf_def.c
index 6825d9645587dd7ed1361a17e2a06fd8aaeb5640..1d30f6f771bb2b774e8e37f4ae33f5de655258c6 100644 (file)
@@ -712,7 +712,7 @@ static void dump_value(CONF_VALUE *a, BIO *out)
 
 static int def_dump(CONF *conf, BIO *out)
        {
-       lh_doall_arg(conf->data, (void (*)())dump_value, out);
+       lh_doall_arg(conf->data, (LHASH_DOALL_ARG_FN_TYPE)dump_value, out);
        return 1;
        }