wchar.h: Fixed typo from previous commit.
git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@1080 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-headers/include/wchar.h b/mingw-w64-headers/include/wchar.h
index 101f746..e3233d7 100644
--- a/mingw-w64-headers/include/wchar.h
+++ b/mingw-w64-headers/include/wchar.h
@@ -874,9 +874,9 @@
if ((_S1 != NULL) != (_S2 != NULL))
return _S2 == NULL ? 1 : -1; /* robust */
for ( ; 0 < _N; ++_S1, ++_S2, --_N)
- if (*_S1! = *_S2)
+ if (*_S1 != *_S2)
return (*_S1 < *_S2 ? -1 : +1);
- return (0);
+ return 0;
}
__CRT_INLINE wchar_t *__cdecl wmemcpy(wchar_t *_S1,const wchar_t *_S2,size_t _N) { return (wchar_t *)memcpy(_S1,_S2,_N*sizeof(wchar_t)); }
__CRT_INLINE wchar_t *__cdecl wmemmove(wchar_t *_S1,const wchar_t *_S2,size_t _N) { return (wchar_t *)memmove(_S1,_S2,_N*sizeof(wchar_t)); }