winex11.drv: Avoid an uninitialized variable warning.

oldstable
Mike McCormack 2006-07-24 14:01:14 +09:00 committed by Alexandre Julliard
parent 0b79d9245d
commit 6eb4bfe85f
1 changed files with 1 additions and 1 deletions

View File

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