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

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