Commit 623f9569 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

user32/tests: Fix the keyboard layout id in an ok() message.

The keyboard layout being tested is not the thread's default keyboard layout. Signed-off-by: 's avatarFrancois Gouget <fgouget@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 1e627d11
...@@ -3166,7 +3166,7 @@ static void test_keyboard_layout_name(void) ...@@ -3166,7 +3166,7 @@ static void test_keyboard_layout_name(void)
swprintf( tmpklid, KL_NAMELENGTH, L"%08X", layouts_preload[j] ); swprintf( tmpklid, KL_NAMELENGTH, L"%08X", layouts_preload[j] );
if (!wcscmp( tmpklid, klid )) break; if (!wcscmp( tmpklid, klid )) break;
} }
ok(j < len, "Could not find keyboard layout %p in preload list\n", layout); ok(j < len, "Could not find keyboard layout %s in preload list\n", wine_dbgstr_w(klid));
if (id & 0x80000000) if (id & 0x80000000)
{ {
......
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