From c7eba65e13424c30da593acaf9637753d2ce1948 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Fri, 18 Jan 2013 22:25:29 -0800 Subject: [PATCH] Fix a clang warning. --- Sources/Plasma/CoreLib/HeadSpin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/CoreLib/HeadSpin.cpp b/Sources/Plasma/CoreLib/HeadSpin.cpp index b103a326..125af369 100644 --- a/Sources/Plasma/CoreLib/HeadSpin.cpp +++ b/Sources/Plasma/CoreLib/HeadSpin.cpp @@ -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;