Fix incorrect string type in log message on non-Windows

This was SVN commit r9790.
This commit is contained in:
Ykkrosh 2011-07-09 18:41:58 +00:00
parent c964904e1b
commit 20ebb2b829

View File

@ -535,7 +535,7 @@ void CProfileViewer::SaveToFile()
}
else
{
LOGMESSAGERENDER(L"Profiler snapshot saved to '%ls'", OsString(path).c_str());
LOGMESSAGERENDER(L"Profiler snapshot saved to '%ls'", path.string().c_str());
}
}