diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-08-01 10:13:44 +0000 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-08-27 21:23:37 -0500 |
commit | 7d1b0975bb533d1a1118bf8bc32a33433a57b568 (patch) | |
tree | cf11d0b4e4b78a29e29b0eeaaec8bd60a2ab2799 | |
parent | 45578f49943c8a3426447a09b22dae315e445d91 (diff) |
Fix Sparse warning about "expression using sizeof on a function"
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rw-r--r-- | block/curl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/block/curl.c b/block/curl.c index 9e21d4ab16..3caa9be1f7 100644 --- a/block/curl.c +++ b/block/curl.c @@ -269,7 +269,7 @@ static CURLState *curl_init_state(BDRVCURLState *s) return NULL; curl_easy_setopt(state->curl, CURLOPT_URL, s->url); curl_easy_setopt(state->curl, CURLOPT_TIMEOUT, 5); - curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, curl_read_cb); + curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_read_cb); curl_easy_setopt(state->curl, CURLOPT_WRITEDATA, (void *)state); curl_easy_setopt(state->curl, CURLOPT_PRIVATE, (void *)state); curl_easy_setopt(state->curl, CURLOPT_AUTOREFERER, 1); @@ -358,11 +358,11 @@ static int curl_open(BlockDriverState *bs, const char *filename, int flags) // Get file size curl_easy_setopt(state->curl, CURLOPT_NOBODY, 1); - curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, curl_size_cb); + curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_size_cb); if (curl_easy_perform(state->curl)) goto out; curl_easy_getinfo(state->curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d); - curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, curl_read_cb); + curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_read_cb); curl_easy_setopt(state->curl, CURLOPT_NOBODY, 0); if (d) s->len = (size_t)d; |