fix error message

This commit is contained in:
mfranz 2007-02-05 21:41:40 +00:00
parent 4d91bc5908
commit 95532cb318

View File

@ -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;
}