Fixed log formatting in DefaultLogger.cpp to work with AssimpView.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@107 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
aramis_acg
2008-08-11 20:57:18 +00:00
parent b5c54703d0
commit 0b1e8fefa5
4 changed files with 23 additions and 26 deletions

View File

@@ -299,7 +299,7 @@ aiReturn Importer::RegisterLoader(BaseImporter* pImp)
pImp->GetExtensionList(st);
#ifdef _DEBUG
const char* sz = ::strtok(st.c_str(),";");
const char* sz = ::strtok(const_cast<char*>(st.c_str()),";");
while (sz)
{
if (IsExtensionSupported(std::string(sz)))