]> Dogcows Code - chaz/openbox/blobdiff - openbox/stacking.c
ANSI function declarations, ie () -> (void)
[chaz/openbox] / openbox / stacking.c
index 2280b87735a079b15329db1875ae433cbed05855..b23e6eac1ca4f0f4b4a542e2b6fae49d073b84fd 100644 (file)
@@ -29,7 +29,7 @@
 
 GList  *stacking_list = NULL;
 
-void stacking_set_list()
+void stacking_set_list(void)
 {
     Window *windows = NULL;
     GList *it;
@@ -411,6 +411,7 @@ void stacking_add_nonintrusive(ObWindow *win)
     ObClient *client;
     GList *it_below = NULL; /* this client will be below us */
     GList *it_above;
+    GList *wins;
 
     if (!WINDOW_IS_CLIENT(win)) {
         stacking_add(win); /* no special rules for others */
@@ -468,7 +469,7 @@ void stacking_add_nonintrusive(ObWindow *win)
             break;
     }
 
-    GList *wins = g_list_append(NULL, win);
+    wins = g_list_append(NULL, win);
     do_restack(wins, it_below);
     g_list_free(wins);
 }
This page took 0.02022 seconds and 4 git commands to generate.