From 2f5a0fb6988809a91c4e6821aaed46ba27c9855c Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Sat, 5 Dec 2009 02:08:32 -0800 Subject: removed unnecessary static declarations Signed-off-by: Dima Kogan Signed-off-by: Peter Hutterer --- src/evdev.c | 6 +++--- 1 file 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 */ -- cgit v1.2.3