From ccf31892a1eb0581e387c4efef4874c9c05cf3fc Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Wed, 18 Jul 2001 09:18:10 +0000 Subject: [PATCH] Fixed a tiny bug. svn path=/trunk/; revision=2067 --- reactos/lib/crtdll/mbstring/mbsnicmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/lib/crtdll/mbstring/mbsnicmp.c b/reactos/lib/crtdll/mbstring/mbsnicmp.c index 57d7c8ab1fa..49c7c3fc791 100644 --- a/reactos/lib/crtdll/mbstring/mbsnicmp.c +++ b/reactos/lib/crtdll/mbstring/mbsnicmp.c @@ -10,8 +10,8 @@ int _mbsnicmp(const unsigned char *s1, const unsigned char *s2, size_t n) do { if (_mbbtoupper(*s1) != _mbbtoupper(*s2)) return _mbbtoupper(*(unsigned const char *)s1) - _mbbtoupper(*(unsigned const char *)s2); - *s1 += _mbclen2(*s1); - *s2 += _mbclen2(*s2); + s1 += _mbclen2(*s1); + s2 += _mbclen2(*s2); if (*s1 == 0) break;