aboutsummaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--screen.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/screen.c b/screen.c
index 76cc843..9ecf699 100644
--- a/screen.c
+++ b/screen.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: screen.c,v 1.6 2008/05/01 18:01:13 oga Exp $
+ * $Id: screen.c,v 1.7 2008/07/11 14:21:28 okan Exp $
*/
#include "headers.h"
@@ -27,7 +27,7 @@ extern struct screen_ctx *Curscreen;
struct screen_ctx *
screen_fromroot(Window rootwin)
{
- struct screen_ctx *sc;
+ struct screen_ctx *sc;
TAILQ_FOREACH(sc, &Screenq, entry)
if (sc->rootwin == rootwin)
@@ -46,10 +46,12 @@ screen_current(void)
void
screen_updatestackingorder(void)
{
- Window *wins, w0, w1;
- struct screen_ctx *sc = screen_current();
- u_int nwins, i, s;
- struct client_ctx *cc;
+ Window *wins, w0, w1;
+ struct screen_ctx *sc;
+ struct client_ctx *cc;
+ u_int nwins, i, s;
+
+ sc = screen_current();
if (!XQueryTree(X_Dpy, sc->rootwin, &w0, &w1, &wins, &nwins))
return;