wcmd: Fix a Win64 warning.

This commit is contained in:
Mike McCormack 2006-06-06 14:21:53 +09:00 committed by Alexandre Julliard
parent 2a7dbd6740
commit 8afbf73c30
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ char filetorun[MAX_PATH];
/* No batch file found, assume executable */
hinst = FindExecutable (param1, NULL, filetorun);
if ((int)hinst < 32)
if ((INT_PTR)hinst < 32)
console = 0;
else
console = SHGetFileInfo (filetorun, 0, &psfi, sizeof(psfi), SHGFI_EXETYPE);