Commit 9a036530 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

mcicda: Use '%u' to print GetLastError().

parent 933bf76b
......@@ -148,7 +148,7 @@ static int MCICDA_GetError(WINE_MCICDAUDIO* wmcda)
case ERROR_NOT_READY: return MCIERR_DEVICE_NOT_READY;
case ERROR_IO_DEVICE: return MCIERR_HARDWARE;
default:
FIXME("Unknown mode %x\n", GetLastError());
FIXME("Unknown mode %u\n", GetLastError());
}
return MCIERR_DRIVER_INTERNAL;
}
......
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