typo: remove duplicate semicolon

This commit is contained in:
Daniel Stenberg 2010-08-08 22:51:37 +02:00
parent 1267719735
commit 6ccbd1bee4
1 changed files with 1 additions and 1 deletions

View File

@ -1714,7 +1714,7 @@ CURLMsg *curl_multi_info_read(CURLM *multi_handle, int *msgs_in_queue)
easy=multi->easy.next;
while(easy != &multi->easy) {
if(easy->msg_stored) {
easy->msg_stored = 0;;
easy->msg_stored = 0;
break;
}
easy = easy->next;