Module: wine Branch: master Commit: 59ef151a93b79be888845eaf3c1ae7d4b04e09e0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=59ef151a93b79be888845eaf3c...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Jul 21 11:09:20 2010 +0200
rundll32: Fix a pointer conversion warning on 64-bit.
---
programs/rundll32/rundll32.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/rundll32/rundll32.c b/programs/rundll32/rundll32.c index c619693..53508c9 100644 --- a/programs/rundll32/rundll32.c +++ b/programs/rundll32/rundll32.c @@ -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;