mirror of
https://github.com/Motorhead1991/qemu.git
synced 2026-01-04 05:30:31 -07:00
escc: fix another coding style nit
Fix another place with =- to be "= -". to avoid confusion with old-style "-=" (which we also have, and needs to be fixed). Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
65528b19a6
commit
084bd07198
1 changed files with 2 additions and 2 deletions
|
|
@ -878,9 +878,9 @@ static void sunmouse_event(void *opaque,
|
|||
ch = -dy;
|
||||
|
||||
if (ch > 127)
|
||||
ch=127;
|
||||
ch = 127;
|
||||
else if (ch < -127)
|
||||
ch=-127;
|
||||
ch = -127;
|
||||
|
||||
put_queue(s, ch & 0xff);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue