From f1ecf08df5c919a404b4a1b7336c5722a9c0167b Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Sun, 8 Nov 2009 12:45:33 +0100 Subject: [PATCH] s/for(/for (/ --- src/manage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/manage.c b/src/manage.c index 23476448..98d01073 100644 --- a/src/manage.c +++ b/src/manage.c @@ -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); -- 2.39.5