From e93661cabe76c9a14021decb95c0766936f5d571 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Tue, 17 Jul 2012 21:40:39 +0200 Subject: tss: silence compiler warning --- src/tss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tss.c') diff --git a/src/tss.c b/src/tss.c index 2c51e30..f1b65a4 100644 --- a/src/tss.c +++ b/src/tss.c @@ -359,7 +359,7 @@ plist_t tss_send_request(plist_t tss_request) { response->content[0] = '\0'; curl_easy_setopt(handle, CURLOPT_SSL_VERIFYPEER, 0); - curl_easy_setopt(handle, CURLOPT_ERRORBUFFER, &curl_error_message); + curl_easy_setopt(handle, CURLOPT_ERRORBUFFER, curl_error_message); curl_easy_setopt(handle, CURLOPT_WRITEFUNCTION, (curl_write_callback)&tss_write_callback); curl_easy_setopt(handle, CURLOPT_WRITEDATA, response); curl_easy_setopt(handle, CURLOPT_HTTPHEADER, header); -- cgit v1.1-32-gdbae