Author: akhaldi
Date: Sun Oct 25 11:11:34 2015
New Revision: 69691
URL:
http://svn.reactos.org/svn/reactos?rev=69691&view=rev
Log:
[CRT] Remove second semicolon. Spotted by Michael Fritscher. CORE-10390
Modified:
trunk/reactos/lib/sdk/crt/string/mbstowcs_nt.c
Modified: trunk/reactos/lib/sdk/crt/string/mbstowcs_nt.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/mbstowc…
==============================================================================
--- trunk/reactos/lib/sdk/crt/string/mbstowcs_nt.c [iso-8859-1] (original)
+++ trunk/reactos/lib/sdk/crt/string/mbstowcs_nt.c [iso-8859-1] Sun Oct 25 11:11:34 2015
@@ -60,7 +60,7 @@
if (!NT_SUCCESS(Status))
return -1;
- return (size_t)(Size / sizeof(wchar_t));;
+ return (size_t)(Size / sizeof(wchar_t));
}
/* EOF */