X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fkeytree.c;h=cc3f6407274b3bb7810b3a36f35840eae1318212;hb=174de91c343dfbdfe866e566393bf4790ae22596;hp=02ad3cadd899298ee37b317c531980af49f81788;hpb=4cb183401cc42f61a759b02f1210a3528f7869e5;p=chaz%2Fopenbox diff --git a/openbox/keytree.c b/openbox/keytree.c index 02ad3cad..cc3f6407 100644 --- a/openbox/keytree.c +++ b/openbox/keytree.c @@ -50,7 +50,7 @@ KeyBindingTree *tree_build(GList *keylist) if (g_list_length(keylist) <= 0) return NULL; /* nothing in the list.. */ - for (it = g_list_last(keylist); it != NULL; it = it->prev) { + for (it = g_list_last(keylist); it; it = g_list_previous(it)) { p = ret; ret = g_new0(KeyBindingTree, 1); if (p == NULL) { @@ -58,7 +58,7 @@ KeyBindingTree *tree_build(GList *keylist) /* this is the first built node, the bottom node of the tree */ ret->keylist = g_list_copy(keylist); /* shallow copy */ - for (it = ret->keylist; it != NULL; it = it->next) /* deep copy */ + for (it = ret->keylist; it; it = g_list_next(it)) /* deep copy */ it->data = g_strdup(it->data); } ret->first_child = p;