]> git.sur5r.net Git - i3/i3/commitdiff
s/for(/for (/
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 8 Nov 2009 11:45:33 +0000 (12:45 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 8 Nov 2009 11:45:33 +0000 (12:45 +0100)
src/manage.c

index 23476448dd43ea1922f0f90667ffd4f919ad4fc9..98d01073afe7e9efdbbfaed89d126d6f23dcb63d 100644 (file)
@@ -50,11 +50,11 @@ void manage_existing_windows(xcb_connection_t *conn, xcb_property_handlers_t *pr
 
         /* Request the window attributes for every window */
         children = xcb_query_tree_children(reply);
-        for(i = 0; i < len; ++i)
+        for (i = 0; i < len; ++i)
                 cookies[i] = xcb_get_window_attributes(conn, children[i]);
 
         /* Call manage_window with the attributes for every window */
-        for(i = 0; i < len; ++i)
+        for (i = 0; i < len; ++i)
                 manage_window(prophs, conn, children[i], cookies[i], true);
 
         free(reply);