From b727f3158935a597b8e6f8944c60eec18a9b846c Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Thu, 7 Oct 2004 09:28:18 -0400 Subject: COMP: Fix problems when doing -Werror --- Source/CTest/Curl/CMake/CurlTests.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Source/CTest/Curl/CMake/CurlTests.c b/Source/CTest/Curl/CMake/CurlTests.c index 981f9f3..5254716 100644 --- a/Source/CTest/Curl/CMake/CurlTests.c +++ b/Source/CTest/Curl/CMake/CurlTests.c @@ -43,6 +43,7 @@ main () #endif int socket; int flags = fcntl(socket, F_SETFL, flags | O_NONBLOCK); + return 0; } #endif @@ -394,7 +395,7 @@ int main() #include #include -void main(void) { +int main(void) { struct addrinfo hints, *ai; int error; @@ -406,11 +407,9 @@ void main(void) { #endif error = getaddrinfo("127.0.0.1", "8080", &hints, &ai); if (error) { - exit(1); - } - else { - exit(0); + return 1; } + return 0; } #endif #ifdef _FILE_OFFSET_BITS -- cgit v0.12