1
0
Fork 0

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

This commit is contained in:
Bertrand Coconnier 2016-06-25 21:26:50 +02:00
parent e165fc5ebe
commit 54274a4b9c

View file

@ -2612,7 +2612,7 @@ void Options::setupRoot(int argc, char **argv)
if (base_version.empty()) {
flightgear::fatalMessageBox("Base package not found",
"Required data files not found, check your installation.",
"Looking for base-package files at: '" + root + "'");
"Looking for base-package files at: '" + root.str() + "'");
exit(-1);
}