From: mfranz Date: Mon, 5 Feb 2007 21:41:40 +0000 (+0000) Subject: fix error message X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=95532cb318be75305f4d40601b266481f2920e54;p=simgear.git fix error message --- diff --git a/simgear/io/sg_binobj.cxx b/simgear/io/sg_binobj.cxx index 11ac6036..19f2c0bb 100644 --- a/simgear/io/sg_binobj.cxx +++ b/simgear/io/sg_binobj.cxx @@ -322,7 +322,7 @@ bool SGBinObject::read_bin( const string& file ) { string filegz = file + ".gz"; if ( (fp = gzopen( filegz.c_str(), "rb" )) == NULL ) { SG_LOG( SG_EVENT, SG_ALERT, - "ERROR: opening " << file << " or " << filegz << "for reading!"); + "ERROR: opening " << file << " or " << filegz << " for reading!"); return false; }