summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMatthew Booth <mbooth@redhat.com>2014-04-29 16:03:25 +0100
committerKevin Wolf <kwolf@redhat.com>2014-04-30 16:33:39 +0200
commitf6246509be602369cfa1250965e1e62a0c62c99f (patch)
tree26c09f19ca888ea20b21c6b90c215b6c3d2225f3
parent0549ea8b6d3ed4eba9a3bd0abfaed3af5de69873 (diff)
downloadfocaccia-qemu-f6246509be602369cfa1250965e1e62a0c62c99f.tar.gz
focaccia-qemu-f6246509be602369cfa1250965e1e62a0c62c99f.zip
curl: Fix long line
Signed-off-by: Matthew Booth <mbooth@redhat.com>
Tested-by: Richard W.M. Jones <rjones@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r--block/curl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/block/curl.c b/block/curl.c
index 6731d2891f..0404dbdfd6 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) {