diff options
| -rw-r--r-- | openbox/event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/event.c b/openbox/event.c index ca60d6f3..6f819cc1 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -1352,8 +1352,8 @@ static void focus_delay_dest(gpointer data) static gboolean focus_delay_cmp(gconstpointer d1, gconstpointer d2) { - const ObFocusDelayData *f1 = d1, *f2 = d2; - return f1->client == f2->client; + const ObFocusDelayData *f1 = d1; + return f1->client == d2; } static gboolean focus_delay_func(gpointer data) |
