Remove unused variables.
authorshadchin <shadchin@openbsd.org>
Wed, 14 May 2014 18:14:09 +0000 (18:14 +0000)
committershadchin <shadchin@openbsd.org>
Wed, 14 May 2014 18:14:09 +0000 (18:14 +0000)
ok miod@

usr.sbin/wsmoused/wsmoused.c
usr.sbin/wsmoused/wsmoused.h

index 2009ccd..c060ae8 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: wsmoused.c,v 1.29 2013/11/24 01:06:19 deraadt Exp $ */
+/* $OpenBSD: wsmoused.c,v 1.30 2014/05/14 18:14:09 shadchin Exp $ */
 
 /*
  * Copyright (c) 2001 Jean-Baptiste Marchand, Julien Montagne and Jerome Verdon
@@ -93,8 +93,6 @@ mouse_t mouse = {
        .old_baudrate = 1200,
        .rate = MOUSE_RATE_UNKNOWN,
        .resolution = MOUSE_RES_UNKNOWN,
-       .zmap = 0,
-       .wmode = 0,
        .mfd = -1,
        .clickthreshold = 500,  /* 0.5 sec */
 };
index c42c564..192e4fb 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: wsmoused.h,v 1.8 2009/06/21 16:13:18 jacekm Exp $ */
+/* $OpenBSD: wsmoused.h,v 1.9 2014/05/14 18:14:09 shadchin Exp $ */
 
 /*
  * Copyright (c) 2001 Jean-Baptiste Marchand, Julien Montagne and Jerome Verdon
@@ -102,8 +102,6 @@ typedef struct mouse_s {
        int old_baudrate;
        unsigned char rate;     /* report rate */
        unsigned int resolution;        /* MOUSE_RES_XXX or a positive number */
-       int zmap;               /* MOUSE_{X|Y}AXIS or a button number */
-       int wmode;              /* wheel mode button number */
        int mfd;                /* mouse file descriptor */
        int cfd;                /* console file descriptor */
        long clickthreshold;    /* double click speed in msec */