From 3cb7c5cfef25463bd197b0c12ca7966f525ebf73 Mon Sep 17 00:00:00 2001 From: Kurt Roeckx Date: Wed, 9 May 2018 17:09:50 +0200 Subject: Use void in all function definitions that do not take any arguments Reviewed-by: Rich Salz GH: #6208 --- crypto/conf/conf_def.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crypto/conf/conf_def.c') diff --git a/crypto/conf/conf_def.c b/crypto/conf/conf_def.c index aa9f2faa9a..7340a91ae4 100644 --- a/crypto/conf/conf_def.c +++ b/crypto/conf/conf_def.c @@ -85,12 +85,12 @@ static CONF_METHOD WIN32_method = { def_load }; -CONF_METHOD *NCONF_default() +CONF_METHOD *NCONF_default(void) { return &default_method; } -CONF_METHOD *NCONF_WIN32() +CONF_METHOD *NCONF_WIN32(void) { return &WIN32_method; } -- cgit v1.2.3