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

Francois Gouget fgouget at free.fr
Thu Jan 18 04:36:44 CST 2007


---
 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_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;
 }
-- 
1.4.4.3




More information about the wine-patches mailing list