[CRT] Remove second semicolon. Spotted by Michael Fritscher. CORE-10390

svn path=/trunk/; revision=69691
This commit is contained in:
Amine Khaldi 2015-10-25 11:11:34 +00:00
parent f5465c7f46
commit 465a34000b

View file

@ -60,7 +60,7 @@ size_t mbstowcs (wchar_t *wcstr, const char *mbstr, size_t count)
if (!NT_SUCCESS(Status))
return -1;
return (size_t)(Size / sizeof(wchar_t));;
return (size_t)(Size / sizeof(wchar_t));
}
/* EOF */