Commit 2f2e3ea5 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

mciavi32: Use I width modifier instead of casting to DWORD.

parent 2df8ad9d
...@@ -1063,11 +1063,11 @@ LRESULT CALLBACK MCIAVI_DriverProc(DWORD_PTR dwDevID, HDRVR hDriv, UINT wMsg, ...@@ -1063,11 +1063,11 @@ LRESULT CALLBACK MCIAVI_DriverProc(DWORD_PTR dwDevID, HDRVR hDriv, UINT wMsg,
case MCI_SAVE: case MCI_SAVE:
case MCI_UNDO: case MCI_UNDO:
case MCI_UNFREEZE: case MCI_UNFREEZE:
TRACE("Unsupported function [0x%x] flags=%08lx\n", wMsg, (DWORD)dwParam1); TRACE("Unsupported function [0x%x] flags=%08Ix\n", wMsg, dwParam1);
return MCIERR_UNSUPPORTED_FUNCTION; return MCIERR_UNSUPPORTED_FUNCTION;
case MCI_SPIN: case MCI_SPIN:
case MCI_ESCAPE: case MCI_ESCAPE:
WARN("Unsupported command [0x%x] %08lx\n", wMsg, (DWORD)dwParam1); WARN("Unsupported command [0x%x] %08Ix\n", wMsg, dwParam1);
break; break;
case MCI_OPEN: case MCI_OPEN:
case MCI_CLOSE: case MCI_CLOSE:
......
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