summaryrefslogtreecommitdiff
path: root/test/cipherlist_test.c
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2017-08-15 23:39:03 +0200
committerRich Salz <rsalz@openssl.org>2017-08-16 10:36:34 -0400
commit31a80694d425bf7f3a0ed5cc2ee775d9418a5490 (patch)
tree0b8d8675d3b84abc2b3cb4e28abf8e057085cce2 /test/cipherlist_test.c
parent30bb02597df9a79b46bae2ddc9885a35286ed205 (diff)
downloadopenssl-new-31a80694d425bf7f3a0ed5cc2ee775d9418a5490.tar.gz
[Win] Fix some test method signatures ...
to halves MSVC warnings. Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4172)
Diffstat (limited to 'test/cipherlist_test.c')
-rw-r--r--test/cipherlist_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cipherlist_test.c b/test/cipherlist_test.c
index 0297b0d2fa..829042748a 100644
--- a/test/cipherlist_test.c
+++ b/test/cipherlist_test.c
@@ -186,7 +186,7 @@ static int execute_test(CIPHERLIST_TEST_FIXTURE *fixture)
#define EXECUTE_CIPHERLIST_TEST() \
EXECUTE_TEST(execute_test, tear_down)
-static int test_default_cipherlist_implicit()
+static int test_default_cipherlist_implicit(void)
{
SETUP_CIPHERLIST_TEST_FIXTURE();
if (fixture == NULL)
@@ -195,7 +195,7 @@ static int test_default_cipherlist_implicit()
return result;
}
-static int test_default_cipherlist_explicit()
+static int test_default_cipherlist_explicit(void)
{
SETUP_CIPHERLIST_TEST_FIXTURE();
if (fixture == NULL)