From 6810536bbf01e6f80987fff4fb523c1ba2225ce6 Mon Sep 17 00:00:00 2001 From: shadchin Date: Tue, 12 Jun 2012 17:44:56 +0000 Subject: [PATCH] fix indent --- driver/xf86-input-ws/src/ws.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/driver/xf86-input-ws/src/ws.h b/driver/xf86-input-ws/src/ws.h index 83029547b..0e0abc07e 100644 --- a/driver/xf86-input-ws/src/ws.h +++ b/driver/xf86-input-ws/src/ws.h @@ -35,17 +35,17 @@ extern int ws_debug_level; /* axis specific data for wheel */ typedef struct { - int negative; - int positive; - int traveled_distance; + int negative; + int positive; + int traveled_distance; } WheelAxis, *WheelAxisPtr; typedef struct WSDevice { - char *devName; /* device name */ - int type; /* ws device type */ - unsigned int lastButtons; /* last state of buttons */ + char *devName; /* device name */ + int type; /* ws device type */ + unsigned int lastButtons; /* last state of buttons */ int old_ax, old_ay; - int min_x, max_x, min_y, max_y; /* coord space */ + int min_x, max_x, min_y, max_y; /* coord space */ int swap_axes; int raw; int inv_x, inv_y;