diff options
author | Daniel Stone <daniel@fooishbar.org> | 2008-04-25 19:52:11 +0300 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2009-01-22 15:08:57 +1100 |
commit | b5f49382fe48f0a762d9a15fb10a7d7e1183fc8d (patch) | |
tree | 702b7695062535454d079b2409ccc06b5a7532e4 /xkb/xkbActions.c | |
parent | 1bd7fd195d85681e722161f8c636a28f11b40abb (diff) |
XKB: Sanitise ctrls action
Turn four unsigned chars into one unsigned long.
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'xkb/xkbActions.c')
-rw-r--r-- | xkb/xkbActions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xkb/xkbActions.c b/xkb/xkbActions.c index cd2688744..4eb6b0bf8 100644 --- a/xkb/xkbActions.c +++ b/xkb/xkbActions.c @@ -671,7 +671,7 @@ XkbEventCauseRec cause; filter->keycode = keycode; filter->active = 1; filter->filterOthers = 0; - change= XkbActionCtrls(&pAction->ctrls); + change= pAction->ctrls.ctrls; filter->priv = change; filter->filter = _XkbFilterControls; filter->upAction = *pAction; |