From: Michael S. Tsirkin Date: Wed, 30 Sep 2009 18:56:44 +0000 (+0000) Subject: escc: fix another coding style nit X-Git-Tag: v0.12.0-rc0~984 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=084bd071981f786d4afee337a1ce797f28859edc;p=thirdparty%2Fqemu.git 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 Signed-off-by: Blue Swirl --- diff --git a/hw/escc.c b/hw/escc.c index cb34d7de522..382719ded01 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);