ntdll: Remove an unneeded cast.

This commit is contained in:
Francois Gouget 2008-12-01 11:10:18 +01:00 committed by Alexandre Julliard
parent 792e672822
commit 9eb62d3f9d
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ static void test_NtIntAtom(void)
{
/* According to the kernel32 functions, integer atoms are only allowed from
* 0x0001 to 0xbfff and not 0xc000 to 0xffff, which is correct */
res = pRtlAddAtomToAtomTable(AtomTable, (PWSTR)0, &testAtom);
res = pRtlAddAtomToAtomTable(AtomTable, NULL, &testAtom);
ok(res == STATUS_INVALID_PARAMETER, "Didn't get expected result from adding 0 int atom, retval: %x\n", res);
for (i = 1; i <= 0xbfff; i++)
{