Commit 8afbf73c authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

wcmd: Fix a Win64 warning.

parent 2a7dbd67
......@@ -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);
......
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