immodule: Stop gcc from complaining

This commit is contained in:
Benjamin Otte 2016-02-06 03:38:37 +01:00 committed by Benjamin Otte
parent 766b1b9886
commit 1d980192fa

View File

@ -899,7 +899,7 @@ get_current_input_language (void)
/* Current thread's keyboard layout */
kblayout = GetKeyboardLayout(0);
/* lowest word in the HKL is the LANGID */
langid = ((guint32)kblayout) & 0xFFFF;
langid = LOWORD (kblayout);
/* LCID is the LANGID without order */
lcid = langid;