Hans Leidekker : mscms: Trace the CMM id as a string.

Alexandre Julliard julliard at winehq.org
Wed Mar 30 13:15:38 CDT 2011


Module: wine
Branch: master
Commit: 8800772f2d1237312fa28399ca953ddbae8737ba
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8800772f2d1237312fa28399ca953ddbae8737ba

Author: Hans Leidekker <hans at codeweavers.com>
Date:   Wed Mar 30 12:29:45 2011 +0200

mscms: Trace the CMM id as a string.

---

 dlls/mscms/stub.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/mscms/stub.c b/dlls/mscms/stub.c
index d7e6877..84c0cdc 100644
--- a/dlls/mscms/stub.c
+++ b/dlls/mscms/stub.c
@@ -137,21 +137,21 @@ BOOL WINAPI GetPS2ColorSpaceArray( HPROFILE profile, DWORD intent, DWORD type, P
 
 BOOL WINAPI RegisterCMMA( PCSTR machine, DWORD id, PCSTR dll )
 {
-    FIXME( "( %p, 0x%08x, %p ) stub\n", machine, id, dll );
+    FIXME( "( %p, %s, %p ) stub\n", machine, MSCMS_dbgstr_tag(id), dll );
 
     return TRUE;
 }
 
 BOOL WINAPI RegisterCMMW( PCWSTR machine, DWORD id, PCWSTR dll )
 {
-    FIXME( "( %p, 0x%08x, %p ) stub\n", machine, id, dll );
+    FIXME( "( %p, %s, %p ) stub\n", machine, MSCMS_dbgstr_tag(id), dll );
 
     return TRUE;
 }
 
 BOOL WINAPI SelectCMM( DWORD id )
 {
-    FIXME( "(%x) stub\n", id );
+    FIXME( "(%s) stub\n", MSCMS_dbgstr_tag(id) );
 
     return TRUE;
 }
@@ -190,14 +190,14 @@ BOOL WINAPI SpoolerCopyFileEvent( LPWSTR printer, LPWSTR key, DWORD event )
 
 BOOL WINAPI UnregisterCMMA( PCSTR machine, DWORD id )
 {
-    FIXME( "( %p, 0x%08x ) stub\n", machine, id );
+    FIXME( "( %p, %s ) stub\n", machine, MSCMS_dbgstr_tag(id) );
 
     return TRUE;
 }
 
 BOOL WINAPI UnregisterCMMW( PCWSTR machine, DWORD id )
 {
-    FIXME( "( %p, 0x%08x ) stub\n", machine, id );
+    FIXME( "( %p, %s ) stub\n", machine, MSCMS_dbgstr_tag(id) );
 
     return TRUE;
 }




More information about the wine-cvs mailing list