summaryrefslogtreecommitdiff
path: root/xkb/xkb.c
diff options
context:
space:
mode:
Diffstat (limited to 'xkb/xkb.c')
-rw-r--r--xkb/xkb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xkb/xkb.c b/xkb/xkb.c
index 867a992d2..0bec24f63 100644
--- a/xkb/xkb.c
+++ b/xkb/xkb.c
@@ -3230,7 +3230,7 @@ ProcXkbSetIndicatorMap(ClientPtr client)
return BadLength;
}
- from = (xkbIndicatorMapWireDesc *) & stuff[1];
+ from = (xkbIndicatorMapWireDesc *) &stuff[1];
for (i = 0, bit = 1; i < XkbNumIndicators; i++, bit <<= 1) {
if (stuff->which & bit) {
if (client->swapped) {
@@ -3243,7 +3243,7 @@ ProcXkbSetIndicatorMap(ClientPtr client)
}
}
- from = (xkbIndicatorMapWireDesc *) & stuff[1];
+ from = (xkbIndicatorMapWireDesc *) &stuff[1];
rc = _XkbSetIndicatorMap(client, dev, stuff->which, from);
if (rc != Success)
return rc;