From 1b802bd5ac6672e2faa66e573a29037e3590c8c5 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Mon, 22 Dec 2008 20:22:14 +0000 Subject: [PATCH] winex11.drv: Superfluous semicolons fix. --- dlls/winex11.drv/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winex11.drv/keyboard.c b/dlls/winex11.drv/keyboard.c index fcde245b118..9c540d12b9c 100644 --- a/dlls/winex11.drv/keyboard.c +++ b/dlls/winex11.drv/keyboard.c @@ -2126,7 +2126,7 @@ UINT X11DRV_MapVirtualKeyEx(UINT wCode, UINT wMapType, HKL hkl) { Display *display = thread_init_display(); -#define returnMVK(value) { TRACE("returning 0x%x.\n",value); return value; } +#define returnMVK(value) do { TRACE("returning 0x%x.\n",value); return value; } while(0) TRACE("wCode=0x%x, wMapType=%d, hkl %p\n", wCode, wMapType, hkl); if (!match_x11_keyboard_layout(hkl))