summaryrefslogtreecommitdiff
path: root/Source/CTest
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-05-06 11:10:19 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2003-05-06 11:10:19 -0400
commitb9eed3ea186a4a1a034b78a3ddac035e856e23b7 (patch)
treee9d5baaadcf58f094c225ed296433c0b05332d1e /Source/CTest
parent721c99a7422b5b53f2ad76345dd77025eee8ebdc (diff)
downloadcmake-b9eed3ea186a4a1a034b78a3ddac035e856e23b7.tar.gz
ERR: Remove warning on Sun
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/Curl/connect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/Curl/connect.c b/Source/CTest/Curl/connect.c
index 05ce10d6e6..0f95bd5d32 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;
}
/*