summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDima Kogan <dkogan@cds.caltech.edu>2009-12-05 02:08:32 -0800
committerPeter Hutterer <peter.hutterer@who-t.net>2009-12-07 11:53:53 +1000
commit2f5a0fb6988809a91c4e6821aaed46ba27c9855c (patch)
treee040f6c3108fccce6b85795a9e04039cfe3aa344
parent1b0df04abe329433658c95debdafdf1714173814 (diff)
removed unnecessary static declarations
Signed-off-by: Dima Kogan <dkogan@cds.caltech.edu> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r--src/evdev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/evdev.c b/src/evdev.c
index 17c0f01..9345d96 100644
--- a/src/evdev.c
+++ b/src/evdev.c
@@ -467,7 +467,7 @@ EvdevProcessButtonEvent(InputInfoPtr pInfo, struct input_event *ev)
static void
EvdevProcessRelativeMotionEvent(InputInfoPtr pInfo, struct input_event *ev)
{
- static int value;
+ int value;
EvdevPtr pEvdev = pInfo->private;
/* Get the signed value, earlier kernels had this as unsigned */
@@ -512,7 +512,7 @@ EvdevProcessRelativeMotionEvent(InputInfoPtr pInfo, struct input_event *ev)
static void
EvdevProcessAbsoluteMotionEvent(InputInfoPtr pInfo, struct input_event *ev)
{
- static int value;
+ int value;
EvdevPtr pEvdev = pInfo->private;
/* Get the signed value, earlier kernels had this as unsigned */
@@ -540,7 +540,7 @@ EvdevProcessAbsoluteMotionEvent(InputInfoPtr pInfo, struct input_event *ev)
static void
EvdevProcessKeyEvent(InputInfoPtr pInfo, struct input_event *ev)
{
- static int value;
+ int value;
EvdevPtr pEvdev = pInfo->private;
/* Get the signed value, earlier kernels had this as unsigned */