From: Mikael Magnusson Date: Fri, 19 Feb 2010 21:36:10 +0000 (+0100) Subject: Use the ObClient *c variable in client_search_focus_tree_full X-Git-Tag: release-3.4.11.1~12 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=d7a469d0061754dd81952424e88fea5a3e3b3c80;p=dana%2Fopenbox.git Use the ObClient *c variable in client_search_focus_tree_full --- diff --git a/openbox/client.c b/openbox/client.c index cc551240..a86bb3a1 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2488,7 +2488,7 @@ ObClient *client_search_focus_tree_full(ObClient *self) for (it = self->parents; it; it = g_slist_next(it)) { ObClient *c = it->data; - if ((c = client_search_focus_tree_full(it->data))) return c; + if ((c = client_search_focus_tree_full(c))) return c; } return NULL;