Call lstrcmpW rather than wcscmp.

This commit is contained in:
Francois Gouget 2003-01-03 03:02:15 +00:00 committed by Alexandre Julliard
parent 8ff278d25e
commit e0af6d0218
1 changed files with 1 additions and 1 deletions

View File

@ -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)