From: short <> Date: Mon, 24 Mar 2003 21:52:22 +0000 (+0000) Subject: Fixed missing REACTOS_UCS2 captive wchar_t string wrapper X-Git-Tag: captive-0_2~36 X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=commitdiff_plain;h=cfda4464430925ef53e4dff7b14d80ce6eecd56c Fixed missing REACTOS_UCS2 captive wchar_t string wrapper --- diff --git a/ntoskrnl/nt/ntevent.c b/ntoskrnl/nt/ntevent.c index f5bf6da..09e1ad8 100644 --- a/ntoskrnl/nt/ntevent.c +++ b/ntoskrnl/nt/ntevent.c @@ -73,7 +73,7 @@ NtInitializeEventImplementation(VOID) { ExEventObjectType = ExAllocatePool(NonPagedPool,sizeof(OBJECT_TYPE)); - RtlCreateUnicodeString(&ExEventObjectType->TypeName, L"Event"); + RtlCreateUnicodeString(&ExEventObjectType->TypeName, REACTOS_UCS2(L"Event")); ExEventObjectType->Tag = TAG('E', 'V', 'T', 'T'); ExEventObjectType->MaxObjects = ULONG_MAX;