From 8e297cb586ab855dc7c018c6f3f2f42c08db0419 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 10 Apr 2012 13:03:35 +1000 Subject: [PATCH] Replace hardcoded max number of touches with a define. Signed-off-by: Peter Hutterer Reviewed-by: Chase Douglas --- src/synaptics.c | 2 +- src/synapticsstr.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/synaptics.c b/src/synaptics.c index 99b5085..918dc6f 100644 --- a/src/synaptics.c +++ b/src/synaptics.c @@ -1186,7 +1186,7 @@ DeviceInitTouch(DeviceIntPtr dev, Atom *axes_labels) if (priv->has_touch) { - priv->num_slots = priv->max_touches ? priv->max_touches : 10; + priv->num_slots = priv->max_touches ? priv->max_touches : SYNAPTICS_MAX_TOUCHES; priv->open_slots = malloc(priv->num_slots * sizeof(int)); if (!priv->open_slots) diff --git a/src/synapticsstr.h b/src/synapticsstr.h index 55aab3d..14ae362 100644 --- a/src/synapticsstr.h +++ b/src/synapticsstr.h @@ -49,6 +49,7 @@ * structs, typedefs, #defines, enums *****************************************************************************/ #define SYNAPTICS_MOVE_HISTORY 5 +#define SYNAPTICS_MAX_TOUCHES 10 typedef struct _SynapticsMoveHist {