winex11.drv: Superfluous semicolons fix.

This commit is contained in:
Andrew Talbot 2008-12-22 20:22:14 +00:00 committed by Alexandre Julliard
parent 6e59407e1c
commit 1b802bd5ac
1 changed files with 1 additions and 1 deletions

View File

@ -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))