From 25b67e96c89644cfe9a2735730d4648c16730d21 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 19 Jun 2012 12:18:32 +0100 Subject: interactive/touch-events: Add a missing return value The draw_touches() function must return a boolean value. https://bugzilla.gnome.org/show_bug.cgi?id=678391 --- tests/interactive/test-touch-events.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/interactive/test-touch-events.c b/tests/interactive/test-touch-events.c index a1122c2a1..905eea11a 100644 --- a/tests/interactive/test-touch-events.c +++ b/tests/interactive/test-touch-events.c @@ -75,6 +75,8 @@ draw_touches (ClutterCairoTexture *canvas, cairo_t *cr) { g_slist_foreach (events, (GFunc) draw_touch, cr); + + return TRUE; } static gboolean -- cgit v1.2.1