Quiet 3 -Wdeclaration-after-statement warnings

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
This commit is contained in:
Alan Coopersmith
2024-01-08 13:54:12 -08:00
parent c13fd78b53
commit ebf3e47c68
2 changed files with 4 additions and 5 deletions

View File

@@ -194,8 +194,7 @@ _nested_input_init_buttons(DeviceIntPtr device) {
map = calloc(NUM_MOUSE_BUTTONS, sizeof(CARD8));
int i;
for (i = 0; i < NUM_MOUSE_BUTTONS; i++)
for (int i = 0; i < NUM_MOUSE_BUTTONS; i++)
map[i] = i;
if (!InitButtonClassDeviceStruct(device, NUM_MOUSE_BUTTONS, buttonLabels, map)) {
@@ -218,8 +217,7 @@ _nested_input_init_axes(DeviceIntPtr device) {
return BadAlloc;
}
int i;
for (i = 0; i < NUM_MOUSE_AXES; i++) {
for (int i = 0; i < NUM_MOUSE_AXES; i++) {
xf86InitValuatorAxisStruct(device, i, (Atom)0, -1, -1, 1, 1, 1, Absolute);
xf86InitValuatorDefaults(device, i);
}

View File

@@ -254,8 +254,9 @@ xf86DrvMsg(scrnIndex, X_INFO, "blu_mask: 0x%lx\n", pPriv->img->blue_mask);
*retGreenMask = pPriv->img->green_mask;
*retBlueMask = pPriv->img->blue_mask;
XEvent ev;
while (1) {
XEvent ev;
XNextEvent(pPriv->display, &ev);
if (ev.type == Expose) {
break;