From: curt Date: Mon, 17 Dec 2001 17:41:02 +0000 (+0000) Subject: Make the Irix compiler happy. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ff0a5bd9eac1fc2258f2d82fd656e2744ae58442;p=flightgear.git Make the Irix compiler happy. --- diff --git a/src/ATC/atis.cxx b/src/ATC/atis.cxx index 6f20fd750..e4af76fdb 100644 --- a/src/ATC/atis.cxx +++ b/src/ATC/atis.cxx @@ -187,7 +187,7 @@ string FGATIS::get_transmission() { } string rwy_no = runways.search(ident, hdg); - if(rwy_no != "NN") { + if(rwy_no != (string)"NN") { transmission += " Landing and departing runway "; transmission += rwy_no; //cout << "in atis.cxx, r.rwy_no = " << rwy_no << " r.id = " << r->id << " r.heading = " << r->heading << endl;