Build fix for *NIX.

This commit is contained in:
Gunnar Beutner 2013-01-24 23:43:34 +01:00
parent 54ffa0a144
commit 0449c66afc
1 changed files with 1 additions and 1 deletions

View File

@ -533,7 +533,7 @@ void ExternalCommand::ProcessFile(double time, const vector<String>& arguments)
ifstream ifp;
ifp.exceptions(ifstream::badbit);
ifp.open(file, ifstream::in);
ifp.open(file.CStr(), ifstream::in);
while(ifp.good()) {
std::string line;