diff finch/gntblist.c @ 28704:650ab9eb4b21

Add missing null sentinels, and help the compiler catch such errors.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 07 Oct 2009 21:17:10 +0000
parents 13f555d07a3f
children a5ddf6a99bfa
line wrap: on
line diff
--- a/finch/gntblist.c	Wed Oct 07 20:23:16 2009 +0000
+++ b/finch/gntblist.c	Wed Oct 07 21:17:10 2009 +0000
@@ -1940,7 +1940,7 @@
 	} else if (!gnt_tree_is_searching(GNT_TREE(ggblist->tree))) {
 		if (strcmp(text, "t") == 0) {
 			finch_blist_toggle_tag_buddy(gnt_tree_get_selection_data(GNT_TREE(ggblist->tree)));
-			gnt_bindable_perform_action_named(GNT_BINDABLE(ggblist->tree), "move-down");
+			gnt_bindable_perform_action_named(GNT_BINDABLE(ggblist->tree), "move-down", NULL);
 		} else if (strcmp(text, "a") == 0) {
 			finch_blist_place_tagged(gnt_tree_get_selection_data(GNT_TREE(ggblist->tree)));
 		} else