diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-05-06 15:10:19 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-05-06 15:10:19 (GMT) |
commit | b9eed3ea186a4a1a034b78a3ddac035e856e23b7 (patch) | |
tree | e9d5baaadcf58f094c225ed296433c0b05332d1e /Source/CTest | |
parent | 721c99a7422b5b53f2ad76345dd77025eee8ebdc (diff) | |
download | CMake-b9eed3ea186a4a1a034b78a3ddac035e856e23b7.zip CMake-b9eed3ea186a4a1a034b78a3ddac035e856e23b7.tar.gz CMake-b9eed3ea186a4a1a034b78a3ddac035e856e23b7.tar.bz2 |
ERR: Remove warning on Sun
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/Curl/connect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/Curl/connect.c b/Source/CTest/Curl/connect.c index 05ce10d..0f95bd5 100644 --- a/Source/CTest/Curl/connect.c +++ b/Source/CTest/Curl/connect.c @@ -135,6 +135,8 @@ int Curl_nonblock(int socket, /* operate on this */ #endif #ifdef HAVE_DISABLED_NONBLOCKING + (void)socket; + (void)nonblock; return 0; /* returns success */ #define SETBLOCK 5 #endif @@ -142,8 +144,6 @@ int Curl_nonblock(int socket, /* operate on this */ #ifndef SETBLOCK #error "no non-blocking method was found/used/set" #endif - (void)socket; - (void)nonblock; } /* |