From: Bertrand Coconnier Date: Sat, 25 Jun 2016 19:26:50 +0000 (+0200) Subject: convert another path to std::string before using it to prevent a compiler error X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b8d91fc449f3788365dd0698be8c3118e3cc18df;p=flightgear.git convert another path to std::string before using it to prevent a compiler error --- diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 97f4c4883..add1c3fe2 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -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); }