Skip to content

Commit

Permalink
curl: Fix long line
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
mdbooth authored and kevmw committed Apr 30, 2014
1 parent 0549ea8 commit f624650
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion block/curl.c
Expand Up @@ -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) {
Expand Down

0 comments on commit f624650

Please sign in to comment.