diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2007-09-04 06:22:28 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2007-09-04 06:25:06 +0200 |
| commit | 1492bd0e7d92b3c7c1ca6adfe46dab4b8c2d3fed (patch) | |
| tree | 31587c790320eef390e5224dba943966036673d2 /openbox/mouse.c | |
| parent | c12d09bde85e40fdfbb36225a1b596b5f27c2335 (diff) | |
Fix shadowed variables
Diffstat (limited to 'openbox/mouse.c')
| -rw-r--r-- | openbox/mouse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/mouse.c b/openbox/mouse.c index 97616096..dbd48695 100644 --- a/openbox/mouse.c +++ b/openbox/mouse.c @@ -153,10 +153,10 @@ void mouse_unbind_all() gint j; for (j = 0; j < OB_NUM_MOUSE_ACTIONS; ++j) { - GSList *it; + GSList *jt; - for (it = b->actions[j]; it; it = g_slist_next(it)) - actions_act_unref(it->data); + for (jt = b->actions[j]; jt; jt = g_slist_next(jt)) + actions_act_unref(jt->data); g_slist_free(b->actions[j]); } g_free(b); |
