From: daveluff Date: Thu, 13 Mar 2003 11:44:40 +0000 (+0000) Subject: Whoops - left out ++itr in a while(1) loop X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f74d6ec90e80c38215c9cce6905520a6e1984574;p=flightgear.git Whoops - left out ++itr in a while(1) loop --- diff --git a/src/ATC/commlist.cxx b/src/ATC/commlist.cxx index 36c5f88b5..ccf8884ca 100644 --- a/src/ATC/commlist.cxx +++ b/src/ATC/commlist.cxx @@ -270,6 +270,7 @@ bool FGCommList::FindByCode( string ICAO, ATCData& ad, atc_type tp ) { ad = *itr; return true; } + ++itr; } } } else {