Commit 6eb4bfe8 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

winex11.drv: Avoid an uninitialized variable warning.

parent 0b79d924
......@@ -1446,7 +1446,7 @@ X11DRV_KEYBOARD_DetectLayout (void)
Display *display = thread_display();
unsigned current, match, mismatch, seq, i, syms;
int score, keyc, key, pkey, ok;
KeySym keysym;
KeySym keysym = 0;
const char (*lkey)[MAIN_LEN][4];
unsigned max_seq = 0;
int max_score = 0, ismatch = 0;
......
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