Re: [PATCH] advapi32: Don't print 32-bit values as long integers.
17 Feb
2016
17 Feb
'16
2:29 p.m.
Charles Davis <cdavis5x(a)gmail.com> writes:
diff --git a/dlls/advapi32/cred.c b/dlls/advapi32/cred.c index 10e58eb..ff763ee 100644 --- a/dlls/advapi32/cred.c +++ b/dlls/advapi32/cred.c @@ -260,7 +260,7 @@ static DWORD mac_read_credential_from_item(SecKeychainItemRef item, BOOL require } if (status != noErr) { - WARN("SecKeychainItemCopyAttributesAndData returned status %ld\n", status); + WARN("SecKeychainItemCopyAttributesAndData returned status %d\n", (int)status);
It would probably be better to change the type instead of adding casts everywhere. -- Alexandre Julliard julliard(a)winehq.org
3589
Age (days ago)
3589
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard