rundll32: Fix a pointer conversion warning on 64-bit.
This commit is contained in:
parent
a38ff8d7dd
commit
59ef151a93
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue