GNOME Bugzilla – Bug 678391
tests: no return in non-void function
Last modified: 2012-06-19 11:20:29 UTC
While building 1.10.8, the open build server raises an error from the build root policy checker: I: Program returns random data in a function E: clutter no-return-in-nonvoid-function test-touch-events.c:78 The function in question is: static gboolean draw_touches (ClutterCairoTexture *canvas, cairo_t *cr) { g_slist_foreach (events, (GFunc) draw_touch, cr); }
Created attachment 216732 [details] [review] interactive/touch-events: Add a missing return value The draw_touches() function must return a boolean value.
Attachment 216732 [details] pushed as b850696 - interactive/touch-events: Add a missing return value