sim-card
/
qemu
Archived
10
0
Fork 0

hid: fix misassignment

The code does not have any effect as is, fix it.

Spotted by clang analyzer:
/src/qemu/hw/hid.c:99:13: warning: Value stored to 'x1' is never read
            x1 = 1;

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
Blue Swirl 2011-09-04 10:59:52 +00:00
parent 48bb9f53f4
commit 18f88f1195
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ static void hid_pointer_event_combine(HIDPointerEvent *e, int xyrel,
/* Windows drivers do not like the 0/0 position and ignore such
* events. */
if (!(x1 | y1)) {
x1 = 1;
e->xdx = 1;
}
}
e->dz += z1;