aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/test_options.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/test_options.c')
-rw-r--r--src/testcurl/test_options.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/testcurl/test_options.c b/src/testcurl/test_options.c
index 004fe615..3198c731 100644
--- a/src/testcurl/test_options.c
+++ b/src/testcurl/test_options.c
@@ -44,6 +44,15 @@ ahc_echo (void *cls,
44 const char *upload_data, size_t *upload_data_size, 44 const char *upload_data, size_t *upload_data_size,
45 void **unused) 45 void **unused)
46{ 46{
47 (void)cls;
48 (void)connection;
49 (void)url;
50 (void)method;
51 (void)version;
52 (void)upload_data;
53 (void)upload_data_size;
54 (void)unused;
55
47 return 0; 56 return 0;
48} 57}
49 58
@@ -118,6 +127,7 @@ int
118main (int argc, char *const *argv) 127main (int argc, char *const *argv)
119{ 128{
120 unsigned int errorCount = 0; 129 unsigned int errorCount = 0;
130 (void)argc; (void)argv; /* Unused. Silent compiler warning. */
121 131
122 errorCount += test_wrap_loc ("ip addr option", &test_ip_addr_option); 132 errorCount += test_wrap_loc ("ip addr option", &test_ip_addr_option);
123 133