提交 084bd071 编写于 作者: M Michael S. Tsirkin 提交者: Blue Swirl

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: NMichael S. Tsirkin <mst@redhat.com>
Signed-off-by: NBlue Swirl <blauwirbel@gmail.com>
上级 65528b19
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册