From d95e5525ce70f768c9e0986588df26ec17b83adb Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Sat, 21 Sep 2013 13:41:40 +0200 Subject: [PATCH] fix no-return-in-nonvoid function --- src/ephy-navigation-history-action.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ephy-navigation-history-action.c b/src/ephy-navigation-history-action.c index 4f7f1c9..c7d7c37 100644 --- a/src/ephy-navigation-history-action.c +++ b/src/ephy-navigation-history-action.c @@ -656,6 +656,7 @@ tool_button_press_event_cb (GtkButton *button, popup_history_menu (action, GTK_WIDGET (button), event); return TRUE; } + return FALSE; } static gboolean -- 1.8.4