From c2a2cd369203191cb8da5c74339e09a9becbc635 Mon Sep 17 00:00:00 2001 From: Peter Osterlund Date: Sat, 3 May 2003 10:22:15 +0200 Subject: [PATCH] Made the params[] array in synclient.c static. --- synclient.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synclient.c b/synclient.c index 8d62856..98c15a0 100644 --- a/synclient.c +++ b/synclient.c @@ -42,7 +42,7 @@ struct Parameter { #define DEFINE_PAR(name, memb, type, min_val, max_val) \ { name, offsetof(SynapticsSHM, memb), (type), (min_val), (max_val) } -struct Parameter params[] = { +static struct Parameter params[] = { DEFINE_PAR("LeftEdge", left_edge, PT_INT, 0, 10000), DEFINE_PAR("RightEdge", right_edge, PT_INT, 0, 10000), DEFINE_PAR("TopEdge", top_edge, PT_INT, 0, 10000),