diff options
Diffstat (limited to 'xserver/hw/xwin/winkeyhook.c')
-rw-r--r-- | xserver/hw/xwin/winkeyhook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xserver/hw/xwin/winkeyhook.c b/xserver/hw/xwin/winkeyhook.c index fe77b2190..66d68f63d 100644 --- a/xserver/hw/xwin/winkeyhook.c +++ b/xserver/hw/xwin/winkeyhook.c @@ -84,7 +84,7 @@ winKeyboardMessageHookLL(int iCode, WPARAM wParam, LPARAM lParam) /* Pass keystrokes on to our main message loop */ if (iCode == HC_ACTION) { winDebug("winKeyboardMessageHook: vkCode: %08x scanCode: %08x\n", - p->vkCode, p->scanCode); + (unsigned int)p->vkCode, (unsigned int)p->scanCode); switch (wParam) { case WM_KEYDOWN: |