projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65528b1
)
escc: fix another coding style nit
author
Michael S. Tsirkin
<mst@redhat.com>
Wed, 30 Sep 2009 18:56:44 +0000
(18:56 +0000)
committer
Blue Swirl
<blauwirbel@gmail.com>
Wed, 30 Sep 2009 18:56:44 +0000
(18:56 +0000)
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>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
hw/escc.c
patch
|
blob
|
history
diff --git
a/hw/escc.c
b/hw/escc.c
index
cb34d7d
..
382719d
100644
(file)
--- 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);