mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
escc: fix coding style nit
Put space between = and - assigning a negative number 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
8f4bee23eb
commit
a0d98a712f
1 changed files with 2 additions and 2 deletions
|
@ -869,9 +869,9 @@ static void sunmouse_event(void *opaque,
|
|||
ch = dx;
|
||||
|
||||
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