diff mbox

[13/13] escc: fix another coding style nit

Message ID 20090930174507.GN1399@redhat.com
State Superseded
Headers show

Commit Message

Michael S. Tsirkin Sept. 30, 2009, 5:45 p.m. UTC
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>
---
 hw/escc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/hw/escc.c b/hw/escc.c
index cb34d7d..382719d 100644
--- a/hw/escc.c
+++ b/hw/escc.c
@@ -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);