From d7a469d0061754dd81952424e88fea5a3e3b3c80 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Fri, 19 Feb 2010 22:36:10 +0100 Subject: [PATCH] Use the ObClient *c variable in client_search_focus_tree_full --- openbox/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/client.c b/openbox/client.c index cc55124..a86bb3a 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; -- 1.9.1