summaryrefslogtreecommitdiffstats
path: root/crypto/conf/conf_def.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2014-08-26 01:07:57 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-08-28 17:06:52 +0100
commit879bde123b18afdcb2aecf67f5c807c016bbcf73 (patch)
treeac9991c1e4cd6fb37c825163ea1ddce321d2a7c9 /crypto/conf/conf_def.c
parent5a3d21c0585064292bde5cd34089e120487ab687 (diff)
fix warning
Reviewed-by: Geoff Thorpe <geoff@openssl.org>
Diffstat (limited to 'crypto/conf/conf_def.c')
-rw-r--r--crypto/conf/conf_def.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/conf/conf_def.c b/crypto/conf/conf_def.c
index f0b2768739..ff55876b6e 100644
--- a/crypto/conf/conf_def.c
+++ b/crypto/conf/conf_def.c
@@ -145,7 +145,7 @@ static int def_init_default(CONF *conf)
return 0;
conf->meth = &default_method;
- conf->meth_data = CONF_type_default;
+ conf->meth_data = (void *)CONF_type_default;
conf->data = NULL;
return 1;