Skip to content

Commit

Permalink
Styling: replaced TABs with space as the original styling does.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bylon2 committed Dec 30, 2020
1 parent 1deed29 commit dec60b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fcurl.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ static int transfer(struct fcurl_handle *h, const void *target, size_t max)
if(!h->transfer_complete) {
do {
if (h->paused) {
/* Unpause + no 'wait' because it was paused with excess data */
h->paused = false;
curl_easy_pause(h->curl, CURLPAUSE_CONT);
mc = CURLM_OK;
/* Unpause + no 'wait' because it was paused with excess data */
h->paused = false;
curl_easy_pause(h->curl, CURLPAUSE_CONT);
mc = CURLM_OK;
}
else {
mc = curl_multi_wait(h->mh, NULL, 0, 5000, &numfds);
Expand Down

0 comments on commit dec60b9

Please sign in to comment.