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:
Michael S. Tsirkin 2009-09-30 19:43:55 +02:00 committed by Blue Swirl
parent 8f4bee23eb
commit a0d98a712f

View file

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