From 56d16aae429eeabfd141a2a331d8c1231bacccbd Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 5 Oct 2019 16:28:44 +0200 Subject: [PATCH] selectionmodel: Remove doubled semicolon --- gtk/gtkselectionmodel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkselectionmodel.c b/gtk/gtkselectionmodel.c index 8d29f395c6..7be454fd74 100644 --- a/gtk/gtkselectionmodel.c +++ b/gtk/gtkselectionmodel.c @@ -118,7 +118,7 @@ gtk_selection_model_default_select_all (GtkSelectionModel *model) static gboolean gtk_selection_model_default_unselect_all (GtkSelectionModel *model) { - return gtk_selection_model_unselect_range (model, 0, g_list_model_get_n_items (G_LIST_MODEL (model)));; + return gtk_selection_model_unselect_range (model, 0, g_list_model_get_n_items (G_LIST_MODEL (model))); } static void -- 2.30.2