forked from mirrors/0ad
Automatically convert all CLogger format strings from wchar_t* to char*.
Done with: ag -ls 'LOG(MESSAGE|MESSAGERENDER|WARNING|ERROR)' source | xargs sed -i 's/LOG\(MESSAGE\|MESSAGERENDER\|WARNING\|ERROR\)(L/LOG\1(/g' This was SVN commit r16183.
This commit is contained in:
@@ -172,7 +172,7 @@ Paths::Paths(const CmdLineArgs& args)
|
||||
// make sure it's valid
|
||||
if(!FileExists(pathname))
|
||||
{
|
||||
LOGERROR(L"Cannot find executable (expected at '%ls')", pathname.string().c_str());
|
||||
LOGERROR("Cannot find executable (expected at '%ls')", pathname.string().c_str());
|
||||
WARN_IF_ERR(StatusFromErrno());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user