diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-09-25 04:34:47 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-09-25 04:34:47 +0000 |
| commit | a3710c960115562bf436442d7e58feb887f744cb (patch) | |
| tree | 9f73a4d02e75e804479ff8ccae652c1d7c35b8cf | |
| parent | de42161ea744c9d4917816c97a7807f196663e89 (diff) | |
ft was uninitialized
| -rw-r--r-- | openbox/focus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/focus.c b/openbox/focus.c index 1006c725..740ce07b 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -294,7 +294,7 @@ void focus_cycle(gboolean forward, gboolean linear, static ObClient *t = NULL; static GList *order = NULL; GList *it, *start, *list; - ObClient *ft; + ObClient *ft = NULL; if (cancel) { if (focus_cycle_target) |
