1
0
Fork 0

convert the path to std::string before using it to prevent a compiler error

This commit is contained in:
Erik Hofman 2016-06-25 15:00:35 +02:00
parent 7f4fe977a1
commit e165fc5ebe

View file

@ -2621,7 +2621,7 @@ void Options::setupRoot(int argc, char **argv)
flightgear::fatalMessageBox("Base package version mismatch",
"Version check failed: please check your installation.",
"Found data files for version '" + base_version +
"' at '" + globals->get_fg_root() + "', version '"
"' at '" + globals->get_fg_root().str() + "', version '"
+ required_version + "' is required.");
exit(-1);