summaryrefslogtreecommitdiff
path: root/src/state.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/state.c')
-rw-r--r--src/state.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/state.c b/src/state.c
index 895d096..774828a 100644
--- a/src/state.c
+++ b/src/state.c
@@ -150,13 +150,15 @@ void output_state(const struct State *s)
150 s->nfinger); 150 s->nfinger);
151 for (i = 0; i < s->nfinger; i++) { 151 for (i = 0; i < s->nfinger; i++) {
152 xf86Msg(X_INFO, 152 xf86Msg(X_INFO,
153 " %+02d %+05d:%+05d +%05d:%+05d %+06d %+05d:%+05d\n", 153 " %+02d %+05d:%+05d +%05d:%+05d "
154 "%+06d %+06d %+05d:%+05d\n",
154 s->finger[i].id, 155 s->finger[i].id,
155 s->finger[i].hw.touch_major, 156 s->finger[i].hw.touch_major,
156 s->finger[i].hw.touch_minor, 157 s->finger[i].hw.touch_minor,
157 s->finger[i].hw.width_major, 158 s->finger[i].hw.width_major,
158 s->finger[i].hw.width_minor, 159 s->finger[i].hw.width_minor,
159 s->finger[i].hw.orientation, 160 s->finger[i].hw.orientation,
161 s->finger[i].hw.pressure,
160 s->finger[i].hw.position_x, 162 s->finger[i].hw.position_x,
161 s->finger[i].hw.position_y); 163 s->finger[i].hw.position_y);
162 } 164 }