]> Git Repo - qemu.git/commitdiff
curl: Fix long line
authorMatthew Booth <[email protected]>
Tue, 29 Apr 2014 15:03:25 +0000 (16:03 +0100)
committerKevin Wolf <[email protected]>
Wed, 30 Apr 2014 14:33:39 +0000 (16:33 +0200)
Signed-off-by: Matthew Booth <[email protected]>
Tested-by: Richard W.M. Jones <[email protected]>
Signed-off-by: Kevin Wolf <[email protected]>
block/curl.c

index 6731d2891f76fe0a8db6c35e3f3dbb326b93847c..0404dbdfd6098e911b26002fc3f4b7dd70563f93 100644 (file)
@@ -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) {
This page took 0.027725 seconds and 4 git commands to generate.