Commit e0af6d02 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Call lstrcmpW rather than wcscmp.

parent 8ff278d2
......@@ -107,7 +107,7 @@ static void test_RtlInitUnicodeString(void)
pRtlInitUnicodeString(&uni, teststring);
ok(uni.Length == sizeof(teststring) - sizeof(WCHAR), "Length uninitialized");
ok(uni.MaximumLength == sizeof(teststring), "MaximumLength uninitialized");
ok(wcscmp(uni.Buffer, originalstring) == 0, "Buffer written to");
ok(lstrcmpW(uni.Buffer, originalstring) == 0, "Buffer written to");
}
static void test_RtlCopyString(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment