From 858a25abf4a71c1c1e2f15e3d61c8e378998f249 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 24 Jan 2019 10:38:41 +0100 Subject: libcli: Solaris cc can't return void values Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- libcli/auth/tests/ntlm_check.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libcli/auth') diff --git a/libcli/auth/tests/ntlm_check.c b/libcli/auth/tests/ntlm_check.c index 65c7b086008..886a1a342f8 100644 --- a/libcli/auth/tests/ntlm_check.c +++ b/libcli/auth/tests/ntlm_check.c @@ -180,7 +180,7 @@ static void test_ntlm_allowed(void **state) static void test_ntlm_allowed_lm_supplied(void **state) { - return test_ntlm_allowed(state); + test_ntlm_allowed(state); } static void test_ntlm_disabled(void **state) @@ -345,7 +345,7 @@ static void test_ntlmv2_only_ntlm(void **state) static void test_ntlmv2_only_ntlm_and_lanman(void **state) { - return test_ntlmv2_only_ntlm(state); + test_ntlmv2_only_ntlm(state); } static void test_ntlmv2_only_ntlm_once(void **state) -- cgit v1.2.1