GNOME Bugzilla – Bug 708461
BRP E: epiphany no-return-in-nonvoid-function ephy-navigation-history-action.c:659
Last modified: 2013-09-26 17:11:41 UTC
the function static gboolean tool_button_press_event_cb (GtkButton *button, GdkEventButton *event, EphyNavigationHistoryAction *action) { if (event->button == 1) { [...] return FALSE; } else if (event->button == 3) { [...] return TRUE; } } Triggers compiler warnings which are raised by build root policy enforcement on openSUSE to errors I: Program returns random data in a function The compiler is 'right' as there is plenty of 'room' to reach the end of the function wihtout a return statement...