1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Fix a clang warning.

This commit is contained in:
Darryl Pogue
2013-01-18 22:25:29 -08:00
parent c71bff3f21
commit c7eba65e13

View File

@ -442,7 +442,7 @@ char *hsWStringToString( const wchar_t *str )
for (i = 0; i < len; i++)
{
char temp = wctob(str[i]);
if (temp == WEOF)
if (temp == EOF)
{
sStr[i] = '\0';
i = len;