Module: wine Branch: master Commit: 9a036530d05c398aa9874011db5323bdbe8069a3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9a036530d05c398aa9874011db...
Author: Francois Gouget fgouget@free.fr Date: Thu Jan 18 11:36:44 2007 +0100
mcicda: Use '%u' to print GetLastError().
---
dlls/mcicda/mcicda.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/mcicda/mcicda.c b/dlls/mcicda/mcicda.c index 359df7f..5ec14e8 100644 --- a/dlls/mcicda/mcicda.c +++ b/dlls/mcicda/mcicda.c @@ -148,7 +148,7 @@ static int MCICDA_GetError(WINE_MCICDAUD 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; }