diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-08-08 22:51:37 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-08-08 22:51:37 +0200 |
commit | 6ccbd1bee4470da4fc73e46dd27c809dbcdf8e2e (patch) | |
tree | 73a7561674d4e48b2079f1de1c5f0d59bc6659fb /lib | |
parent | 1267719735480ead35373bde4ebed0de2b77dedb (diff) |
typo: remove duplicate semicolon
Diffstat (limited to 'lib')
-rw-r--r-- | lib/multi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/multi.c b/lib/multi.c index e6e3b0794..03fddb458 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -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; |