diff --git a/code/ObjExporter.cpp b/code/ObjExporter.cpp index bbf26ce56..dce217d12 100644 --- a/code/ObjExporter.cpp +++ b/code/ObjExporter.cpp @@ -60,7 +60,7 @@ void ExportSceneObj(const char* pFile,IOSystem* pIOSystem, const aiScene* pScene { boost::scoped_ptr outfile (pIOSystem->Open(pFile,"wt")); if(outfile == NULL) { - throw DeadlyExportError("could not open output .obj file: " + std::string(pFile)); + throw DeadlyExportError("could not open output .obj file: " + std::string(pFile)); } outfile->Write( exporter.mOutput.str().c_str(), static_cast(exporter.mOutput.tellp()),1); }