Skip to content
Snippets Groups Projects
Commit 9a036530 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard
Browse files

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

parent 933bf76b
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment