rundll32: Fix a pointer conversion warning on 64-bit.

This commit is contained in:
Alexandre Julliard 2010-07-21 11:09:20 +02:00
parent a38ff8d7dd
commit 59ef151a93
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ static void *get_entry_point32( HMODULE module, LPCWSTR entry, BOOL *unicode )
/* determine if the entry point is an ordinal */
if (entry[0] == '#')
{
int ordinal = atoiW( entry + 1 );
INT_PTR ordinal = atoiW( entry + 1 );
if (ordinal <= 0)
return NULL;