Huw Davies : mountmgr: Fix long type warning.

Alexandre Julliard julliard at winehq.org
Wed Feb 2 16:38:04 CST 2022


Module: wine
Branch: master
Commit: 02b9dee237ca5571e4c3c215d1ec3087097725ce
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=02b9dee237ca5571e4c3c215d1ec3087097725ce

Author: Huw Davies <huw at codeweavers.com>
Date:   Wed Feb  2 11:48:19 2022 +0000

mountmgr: Fix long type warning.

Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/mountmgr.sys/cred.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/mountmgr.sys/cred.c b/dlls/mountmgr.sys/cred.c
index 9fb9e433881..5c95dff5cab 100644
--- a/dlls/mountmgr.sys/cred.c
+++ b/dlls/mountmgr.sys/cred.c
@@ -64,7 +64,7 @@ NTSTATUS query_symbol_file( void *args )
 
     if (!(query_cfstring = CFStringCreateWithFormat(kCFAllocatorDefault, NULL,
                                                     CFSTR("com_apple_xcode_dsym_uuids == \"%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X\""),
-                                                    id->Data1, id->Data2, id->Data3, id->Data4[0],
+                                                    (unsigned int)id->Data1, id->Data2, id->Data3, id->Data4[0],
                                                     id->Data4[1], id->Data4[2], id->Data4[3], id->Data4[4],
                                                     id->Data4[5], id->Data4[6], id->Data4[7] )))
         return STATUS_NO_MEMORY;




More information about the wine-cvs mailing list