From 24e4c6db25aef7a057f3f384f1e2ce67e66fa40e Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sun, 29 May 2016 18:43:00 -0700 Subject: [PATCH] test: Actually verify that two equivalent touch points are the same I typo'd when fixing this at Peter's request and left off the '2' from the second variable name. Signed-off-by: Keith Packard --- test/touch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/touch.c b/test/touch.c index 1364d615c..19c68784d 100644 --- a/test/touch.c +++ b/test/touch.c @@ -143,7 +143,7 @@ touch_find_ddxid(void) ti = TouchFindByDDXID(&dev, 30, TRUE); assert(ti != NULL); ti2 = TouchFindByDDXID(&dev, 30, TRUE); - assert(ti == ti); + assert(ti == ti2); /* make sure we have resized */ assert(dev.last.num_touches == 8); /* EQ grows from 5 to 8 */