From d9bfaeb59e7e6408ea6a6e5d4c4ae29922af076e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Tue, 25 Mar 2014 22:56:58 +0100 Subject: [PATCH] test: Fix name of litest_button_click() definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In litest.h it was called litest_button_click() while in litest.c litest_click(); update the definition to be the same as the declaration. Signed-off-by: Jonas Ã…dahl --- test/litest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/litest.c b/test/litest.c index 5102ab17..af7fd39f 100644 --- a/test/litest.c +++ b/test/litest.c @@ -643,7 +643,7 @@ litest_touch_move_to(struct litest_device *d, } void -litest_click(struct litest_device *d, unsigned int button, bool is_press) +litest_button_click(struct litest_device *d, unsigned int button, bool is_press) { struct input_event *ev;