]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
typo: remove duplicate semicolon
authorDaniel Stenberg <daniel@haxx.se>
Sun, 8 Aug 2010 20:51:37 +0000 (22:51 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 8 Aug 2010 20:51:37 +0000 (22:51 +0200)
lib/multi.c

index e6e3b079423b55104d644630cf51e3a2416d0d55..03fddb45872756061918e70781485a75749b0734 100644 (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;