[CRT] Remove second semicolon. Spotted by Michael Fritscher. CORE-10390
authorAmine Khaldi <amine.khaldi@reactos.org>
Sun, 25 Oct 2015 11:11:34 +0000 (11:11 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sun, 25 Oct 2015 11:11:34 +0000 (11:11 +0000)
svn path=/trunk/; revision=69691

reactos/lib/sdk/crt/string/mbstowcs_nt.c

index 0906391..af1ef8a 100644 (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 */