diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2009-09-30 19:43:55 +0200 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-30 18:45:50 +0000 |
commit | a0d98a712fbb1f22e347299006e4004bb985eb34 (patch) | |
tree | d8f9061f5a2f6a45ab93af5c59d0bce30cdc7483 /hw/escc.c | |
parent | 8f4bee23eb86f96f25ea2b5b1fe06b83995366e6 (diff) |
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>
Diffstat (limited to 'hw/escc.c')
-rw-r--r-- | hw/escc.c | 4 |
1 files changed, 2 insertions, 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); |