Commit 59ef151a authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent a38ff8d7
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment