mirror of
https://github.com/reactos/reactos.git
synced 2026-06-17 20:44:47 +08:00
fixed a typo
svn path=/trunk/; revision=804
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
int _wcsnicmp(const wchar_t * cs,const wchar_t * ct,size_t count)
|
||||
{
|
||||
wchar_t *save = (char *)cs;
|
||||
wchar_t *save = (wchar_t *)cs;
|
||||
while (towlower(*cs) == towlower(*ct) && (int)(cs - save) < count)
|
||||
{
|
||||
if (*cs == 0)
|
||||
@@ -11,5 +11,4 @@ int _wcsnicmp(const wchar_t * cs,const wchar_t * ct,size_t count)
|
||||
ct++;
|
||||
}
|
||||
return towlower(*cs) - towlower(*ct);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user