Changeset 63435 in vbox for trunk/src/VBox/Additions/x11/vboxmouse/vboxmouse.c
- Timestamp:
- Aug 14, 2016 9:56:30 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/vboxmouse/vboxmouse.c
r63222 r63435 71 71 /* Read a byte from the device to acknowledge the event */ 72 72 char c; 73 (void) read(pInfo->fd, &c, 1); 73 int res = read(pInfo->fd, &c, 1); 74 NOREF(res); 74 75 /* The first test here is a workaround for an apparent bug in Xorg Server 1.5 */ 75 76 if (
Note:
See TracChangeset
for help on using the changeset viewer.