From 4fcc83a02c512e78572543aab33ce537a71937f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= Date: Fri, 17 Oct 2014 23:34:36 +0200 Subject: [PATCH] Add missing comma in call to gtk_tree_store_set(). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was causing random crashes in the Debian package, see: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=764510 Thanks to Frédéric Bière for finding and fixing the problem. --- src/gnome/dialog-sx-since-last-run.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gnome/dialog-sx-since-last-run.c b/src/gnome/dialog-sx-since-last-run.c index a230723a1a..ebf638726d 100644 --- a/src/gnome/dialog-sx-since-last-run.c +++ b/src/gnome/dialog-sx-since-last-run.c @@ -537,8 +537,8 @@ gsslrtma_populate_tree_store(GncSxSlrTreeModelAdapter *model) SLR_MODEL_COL_VARAIBLE_VALUE, tmp_str->str, SLR_MODEL_COL_INSTANCE_VISIBILITY, FALSE, SLR_MODEL_COL_VARIABLE_VISIBILITY, TRUE, - SLR_MODEL_COL_INSTANCE_STATE_SENSITIVITY, FALSE - - 1); + SLR_MODEL_COL_INSTANCE_STATE_SENSITIVITY, FALSE, + -1); g_string_free(tmp_str, TRUE); } g_list_free(vars);