[DELAYIMP] Fix 2 Clang-Cl warnings about __pfnDliNotifyHook2Default and __pfnDliFailu...
[reactos.git] / sdk / lib / drivers / ntoskrnl_vista / rtl.c
index 0aed7ea..5adfc97 100644 (file)
@@ -70,9 +70,7 @@ NTSTATUS NTAPI RtlUnicodeToUTF8N(CHAR *utf8_dest, ULONG utf8_bytes_max,
         }
 
         /* encode ch as UTF-8 */
-#ifndef __REACTOS__
-        assert(ch <= 0x10ffff);
-#endif
+        ASSERT(ch <= 0x10ffff);
         if (ch < 0x80)
         {
             utf8_ch[0] = ch & 0x7f;