diff options
author | Alexandr Shadchin <shadchin@cvs.openbsd.org> | 2012-06-12 17:59:02 +0000 |
---|---|---|
committer | Alexandr Shadchin <shadchin@cvs.openbsd.org> | 2012-06-12 17:59:02 +0000 |
commit | a379c2621fd06ff037401d8a10272140b9b81c0e (patch) | |
tree | de5528e25cf070437877f11ad9d6509b070ae996 /driver/xf86-input-ws | |
parent | e7d6cd8aae89d50421d02d642e48bec0f9b75492 (diff) |
zap extra brackets
Diffstat (limited to 'driver/xf86-input-ws')
-rw-r--r-- | driver/xf86-input-ws/src/ws.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/xf86-input-ws/src/ws.c b/driver/xf86-input-ws/src/ws.c index 5e94a4bba..bede8d71a 100644 --- a/driver/xf86-input-ws/src/ws.c +++ b/driver/xf86-input-ws/src/ws.c @@ -13,7 +13,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $OpenBSD: ws.c,v 1.54 2012/06/12 17:12:50 shadchin Exp $ */ +/* $OpenBSD: ws.c,v 1.55 2012/06/12 17:59:01 shadchin Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -354,7 +354,7 @@ wsDeviceInit(DeviceIntPtr pWS) xmax = ymax; ymax = tmp; } - if ((priv->type == WSMOUSE_TYPE_TPANEL)) { + if (priv->type == WSMOUSE_TYPE_TPANEL) { axes_labels[0] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_X); axes_labels[1] = XIGetKnownProperty(AXIS_LABEL_PROP_ABS_Y); } else { |