Commit d2f7becc authored by Charles Davis's avatar Charles Davis Committed by Alexandre Julliard

winemac.drv: Don't print 32-bit values as long integers (Clang).

parent d6dcc253
......@@ -1545,7 +1545,7 @@ INT CDECL macdrv_ToUnicodeEx(UINT virtKey, UINT scanCode, const BYTE *lpKeyState
INT ret = 0;
int keyc;
BOOL is_menu = (flags & 0x1);
OSStatus status;
int status;
const UCKeyboardLayout *uchr;
UInt16 keyAction;
UInt32 modifierKeyState;
......@@ -1664,7 +1664,7 @@ INT CDECL macdrv_ToUnicodeEx(UINT virtKey, UINT scanCode, const BYTE *lpKeyState
&len, bufW);
if (status != noErr)
{
ERR_(key)("Couldn't translate keycode 0x%04x, status %ld\n", keyc, status);
ERR_(key)("Couldn't translate keycode 0x%04x, status %d\n", keyc, status);
goto done;
}
if (!is_menu)
......@@ -1687,7 +1687,7 @@ INT CDECL macdrv_ToUnicodeEx(UINT virtKey, UINT scanCode, const BYTE *lpKeyState
&savedDeadKeyState, bufW_size, &len, bufW);
if (status != noErr)
{
ERR_(key)("Couldn't translate keycode 0x%04x, status %ld\n", keyc, status);
ERR_(key)("Couldn't translate keycode 0x%04x, status %d\n", keyc, status);
goto done;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment