diff options
author | Kurt Roeckx <kurt@roeckx.be> | 2018-05-09 17:09:50 +0200 |
---|---|---|
committer | Kurt Roeckx <kurt@roeckx.be> | 2018-05-11 14:37:48 +0200 |
commit | 3cb7c5cfef25463bd197b0c12ca7966f525ebf73 (patch) | |
tree | e48a48cfd6aa0a3492cf6aec22de0e70f7284577 /test/sslcorrupttest.c | |
parent | rsaz_avx2_eligible doesn't take parameters (diff) | |
download | openssl-3cb7c5cfef25463bd197b0c12ca7966f525ebf73.tar.xz openssl-3cb7c5cfef25463bd197b0c12ca7966f525ebf73.zip |
Use void in all function definitions that do not take any arguments
Reviewed-by: Rich Salz <rsalz@openssl.org>
GH: #6208
Diffstat (limited to 'test/sslcorrupttest.c')
-rw-r--r-- | test/sslcorrupttest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sslcorrupttest.c b/test/sslcorrupttest.c index 30d3d3d947..d06c8c729b 100644 --- a/test/sslcorrupttest.c +++ b/test/sslcorrupttest.c @@ -137,7 +137,7 @@ static void bio_f_tls_corrupt_filter_free(void) */ static const char **cipher_list = NULL; -static int setup_cipher_list() +static int setup_cipher_list(void) { SSL_CTX *ctx = NULL; SSL *ssl = NULL; |