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:
Michael S. Tsirkin 2009-09-30 18:56:44 +00:00 committed by Blue Swirl
parent 65528b19a6
commit 084bd07198
1 changed files with 2 additions and 2 deletions

View File

@ -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);