Xi: silence compiler warnings (set but not used)
exevents.c: In function 'UpdateDeviceState': exevents.c:719:9: warning: variable 'bit' set but not used [-Wunused-but-set-variable] exevents.c: In function 'ProcessOtherEvent': exevents.c:889:22: warning: variable 'v' set but not used [-Wunused-but-set-variable] exevents.c:888:17: warning: variable 'k' set but not used [-Wunused-but-set-variable] Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Daniel Stone <daniel@fooishbar.org>
This commit is contained in:
parent
98fe735ea1
commit
484cef5b29
|
@ -716,7 +716,6 @@ UpdateDeviceState(DeviceIntPtr device, DeviceEvent* event)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
int key = 0,
|
int key = 0,
|
||||||
bit = 0,
|
|
||||||
last_valuator;
|
last_valuator;
|
||||||
|
|
||||||
KeyClassPtr k = NULL;
|
KeyClassPtr k = NULL;
|
||||||
|
@ -750,7 +749,6 @@ UpdateDeviceState(DeviceIntPtr device, DeviceEvent* event)
|
||||||
b = device->button;
|
b = device->button;
|
||||||
|
|
||||||
key = event->detail.key;
|
key = event->detail.key;
|
||||||
bit = 1 << (key & 7);
|
|
||||||
|
|
||||||
/* Update device axis */
|
/* Update device axis */
|
||||||
/* Check valuators first */
|
/* Check valuators first */
|
||||||
|
@ -888,8 +886,6 @@ ProcessOtherEvent(InternalEvent *ev, DeviceIntPtr device)
|
||||||
Bool deactivateDeviceGrab = FALSE;
|
Bool deactivateDeviceGrab = FALSE;
|
||||||
int key = 0, rootX, rootY;
|
int key = 0, rootX, rootY;
|
||||||
ButtonClassPtr b;
|
ButtonClassPtr b;
|
||||||
KeyClassPtr k;
|
|
||||||
ValuatorClassPtr v;
|
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int state, i;
|
int state, i;
|
||||||
DeviceIntPtr mouse = NULL, kbd = NULL;
|
DeviceIntPtr mouse = NULL, kbd = NULL;
|
||||||
|
@ -953,9 +949,7 @@ ProcessOtherEvent(InternalEvent *ev, DeviceIntPtr device)
|
||||||
if (ret == DONT_PROCESS)
|
if (ret == DONT_PROCESS)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
v = device->valuator;
|
|
||||||
b = device->button;
|
b = device->button;
|
||||||
k = device->key;
|
|
||||||
|
|
||||||
if (IsMaster(device) || IsFloating(device))
|
if (IsMaster(device) || IsFloating(device))
|
||||||
CheckMotion(event, device);
|
CheckMotion(event, device);
|
||||||
|
|
Loading…
Reference in New Issue