From a0d98a712fbb1f22e347299006e4004bb985eb34 Mon Sep 17 00:00:00 2001 From: "Michael S. Tsirkin" Date: Wed, 30 Sep 2009 19:43:55 +0200 Subject: [PATCH] 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 Signed-off-by: Blue Swirl --- hw/escc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/escc.c b/hw/escc.c index 17694ed3fa..cb34d7de52 100644 --- a/hw/escc.c +++ b/hw/escc.c @@ -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); -- 2.11.0