Made the params[] array in synclient.c static.

This commit is contained in:
Peter Osterlund
2003-05-03 10:22:15 +02:00
parent 280b22f3f8
commit c2a2cd3692

View File

@@ -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),