diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-07-09 17:48:37 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-07-09 17:48:37 (GMT) |
commit | c944a60b17dbed80b99a56d792a5d09710d781e2 (patch) | |
tree | 77b56a04932dd0ab97cf82483ab09588e5da65ce /Utilities/cmcurl | |
parent | e36ae0fcb8bcc4383111b1c2ba4b0a7770704745 (diff) | |
download | CMake-c944a60b17dbed80b99a56d792a5d09710d781e2.zip CMake-c944a60b17dbed80b99a56d792a5d09710d781e2.tar.gz CMake-c944a60b17dbed80b99a56d792a5d09710d781e2.tar.bz2 |
COMP: Remove errors
Diffstat (limited to 'Utilities/cmcurl')
-rw-r--r-- | Utilities/cmcurl/Testing/ftpget.c | 1 | ||||
-rw-r--r-- | Utilities/cmcurl/Testing/ftpgetresp.c | 1 | ||||
-rw-r--r-- | Utilities/cmcurl/Testing/ftpupload.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/Utilities/cmcurl/Testing/ftpget.c b/Utilities/cmcurl/Testing/ftpget.c index db3edfb..1a3633e 100644 --- a/Utilities/cmcurl/Testing/ftpget.c +++ b/Utilities/cmcurl/Testing/ftpget.c @@ -11,6 +11,7 @@ #include "curl/curl.h" #include "curl/types.h" #include "curl/easy.h" +#include "setup.h" #include "testconfig.h" diff --git a/Utilities/cmcurl/Testing/ftpgetresp.c b/Utilities/cmcurl/Testing/ftpgetresp.c index d3f5d42..9548b2a 100644 --- a/Utilities/cmcurl/Testing/ftpgetresp.c +++ b/Utilities/cmcurl/Testing/ftpgetresp.c @@ -34,6 +34,7 @@ int main(int argc, char **argv) CURLcode res; FILE *ftpfile; FILE *respfile; + (void)argc; (void)argv; /* local file name to store the file as */ ftpfile = fopen(LIBCURL_BINARY_DIR "/Testing/ftpgetresp-list.txt", "wb"); /* b is binary, needed on win32 */ diff --git a/Utilities/cmcurl/Testing/ftpupload.c b/Utilities/cmcurl/Testing/ftpupload.c index bca0a56..780c9cd 100644 --- a/Utilities/cmcurl/Testing/ftpupload.c +++ b/Utilities/cmcurl/Testing/ftpupload.c @@ -9,6 +9,7 @@ */ #include "curl/curl.h" +#include "setup.h" #include <sys/types.h> #include <sys/stat.h> |