mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
fixed a typo
svn path=/trunk/; revision=804
This commit is contained in:
parent
6d3a97eb5e
commit
e2e5efb9d7
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue