Author: tkreuzer
Date: Thu Sep 27 22:01:26 2012
New Revision: 57406
URL:
http://svn.reactos.org/svn/reactos?rev=57406&view=rev
Log:
Fix build
Modified:
trunk/reactos/lib/sdk/crt/string/mbstowcs_s.c
Modified: trunk/reactos/lib/sdk/crt/string/mbstowcs_s.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/mbstowc…
==============================================================================
--- trunk/reactos/lib/sdk/crt/string/mbstowcs_s.c [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/string/mbstowcs_s.c [iso-8859-1] Thu Sep 27 22:01:26 2012
@@ -96,7 +96,7 @@
else
{
/* Get the length of the string, plus 0 terminator */
- cwcWritten = _mbsnlen(pmbstr, count) + 1;
+ cwcWritten = _mbsnlen((const unsigned char *)pmbstr, count) + 1;
}
}
else