mirror of
https://github.com/reactos/reactos.git
synced 2025-05-27 21:18:15 +00:00
[NTDLL_APITEST] Fix x64 MSVC warnings
This commit is contained in:
parent
7af8ab2470
commit
102c1db735
1 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@ static const struct
|
|||
|
||||
START_TEST(RtlUnicodeToOemN)
|
||||
{
|
||||
ULONG Length;
|
||||
SIZE_T Length;
|
||||
LPSTR StrOem;
|
||||
ULONG ResultSize;
|
||||
NTSTATUS Status;
|
||||
|
@ -216,7 +216,7 @@ START_TEST(RtlUnicodeToOemN)
|
|||
Length,
|
||||
&ResultSize,
|
||||
TestData[i].Test[j].StrW,
|
||||
wcslen(TestData[i].Test[j].StrW) * sizeof(WCHAR));
|
||||
(ULONG)wcslen(TestData[i].Test[j].StrW) * sizeof(WCHAR));
|
||||
|
||||
ok_ntstatus(Status, TestData[i].Test[j].Status);
|
||||
ok_long(ResultSize, TestData[i].Test[j].ReturnedSize);
|
||||
|
|
Loading…
Reference in a new issue