aboutsummaryrefslogtreecommitdiff
path: root/input.c
diff options
context:
space:
mode:
authorBrad Hards <bradh@frogmouth.net>2011-04-09 12:11:36 +1000
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2011-04-09 10:56:17 +0100
commit97697373b41ec1d337d6826d981a0cb4e75c37f0 (patch)
treed51892d882f137d652ce8c1c99ada3540172f1ed /input.c
parentf95857b34d284895816f2091ef4fc6d9460ebf3b (diff)
event: trivial coding style fixes
Signed-off-by: Brad Hards <bradh@frogmouth.net> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'input.c')
-rw-r--r--input.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/input.c b/input.c
index ec05548f7a..5664d3a1e3 100644
--- a/input.c
+++ b/input.c
@@ -161,15 +161,15 @@ void kbd_mouse_event(int dx, int dy, int dz, int buttons_state)
if (mouse_event) {
if (graphic_rotate) {
- if (entry->qemu_put_mouse_event_absolute)
+ if (entry->qemu_put_mouse_event_absolute) {
width = 0x7fff;
- else
+ } else {
width = graphic_width - 1;
- mouse_event(mouse_event_opaque,
- width - dy, dx, dz, buttons_state);
- } else
- mouse_event(mouse_event_opaque,
- dx, dy, dz, buttons_state);
+ }
+ mouse_event(mouse_event_opaque, width - dy, dx, dz, buttons_state);
+ } else {
+ mouse_event(mouse_event_opaque, dx, dy, dz, buttons_state);
+ }
}
}