From b2ff221e3751886790538973346c5ea24b6745dd Mon Sep 17 00:00:00 2001 From: Rafal Harabien Date: Wed, 19 Oct 2011 16:37:34 +0000 Subject: [PATCH] [USER32] - Fix a typo svn path=/trunk/; revision=54200 --- reactos/dll/win32/user32/windows/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/user32/windows/input.c b/reactos/dll/win32/user32/windows/input.c index 3c770c5baa2..38c96a309b5 100644 --- a/reactos/dll/win32/user32/windows/input.c +++ b/reactos/dll/win32/user32/windows/input.c @@ -205,7 +205,7 @@ GetKeyboardLayoutNameA(LPSTR pwszKLID) if (!GetKeyboardLayoutNameW(buf)) return FALSE; - if (!WideCharToMultiByte(CP_ACP, 0, buf, -1, pwszKLID, KL_NAMELENGTH, NULL, NULL)); + if (!WideCharToMultiByte(CP_ACP, 0, buf, -1, pwszKLID, KL_NAMELENGTH, NULL, NULL)) return FALSE; return TRUE;