Commit 1b802bd5 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

winex11.drv: Superfluous semicolons fix.

parent 6e59407e
......@@ -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))
......
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