From: Matthew Booth Date: Tue, 29 Apr 2014 15:03:25 +0000 (+0100) Subject: curl: Fix long line X-Git-Tag: qemu-xen-4.6.0-rc1~480^2~7 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=f6246509be602369cfa1250965e1e62a0c62c99f;p=qemu-upstream-4.6-testing.git curl: Fix long line Signed-off-by: Matthew Booth Tested-by: Richard W.M. Jones Signed-off-by: Kevin Wolf --- diff --git a/block/curl.c b/block/curl.c index 6731d2891..0404dbdfd 100644 --- a/block/curl.c +++ b/block/curl.c @@ -256,7 +256,8 @@ static void curl_multi_read(BDRVCURLState *s) case CURLMSG_DONE: { CURLState *state = NULL; - curl_easy_getinfo(msg->easy_handle, CURLINFO_PRIVATE, (char**)&state); + curl_easy_getinfo(msg->easy_handle, CURLINFO_PRIVATE, + (char **)&state); /* ACBs for successful messages get completed in curl_read_cb */ if (msg->data.result != CURLE_OK) {