mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-06 23:40:13 +01:00
fixed an uninitialized variable, which caused keyboard breakage on x86
when building with optimization enabled.
This commit is contained in:
parent
a3f72edee8
commit
6479d4e01e
1 changed files with 1 additions and 1 deletions
|
|
@ -220,7 +220,7 @@ DarwinModeReadSystemKeymap (darwinKeyboardInfo *info)
|
|||
const void *chr_data = NULL;
|
||||
int num_keycodes = NUM_KEYCODES;
|
||||
UInt32 keyboard_type = 0;
|
||||
int is_uchr, i, j;
|
||||
int is_uchr = 0, i, j;
|
||||
OSStatus err;
|
||||
KeySym *k;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue