From 3412e12602d09982c36138591918c2dd3fb9741a Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 29 Nov 2010 22:35:46 +0100 Subject: [PATCH] xinerama.c: fix indention --- src/xinerama.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/xinerama.c b/src/xinerama.c index bf92a636..369e8ab7 100644 --- a/src/xinerama.c +++ b/src/xinerama.c @@ -26,8 +26,8 @@ static int num_screens; static Output *get_screen_at(int x, int y) { Output *output; TAILQ_FOREACH(output, &outputs, outputs) - if (output->rect.x == x && output->rect.y == y) - return output; + if (output->rect.x == x && output->rect.y == y) + return output; return NULL; } @@ -100,10 +100,10 @@ void xinerama_init() { reply = xcb_xinerama_is_active_reply(conn, xcb_xinerama_is_active(conn), NULL); if (reply == NULL || !reply->state) { - DLOG("Xinerama is not active (in your X-Server), disabling.\n"); - disable_randr(conn); + DLOG("Xinerama is not active (in your X-Server), disabling.\n"); + disable_randr(conn); } else - query_screens(conn); + query_screens(conn); FREE(reply); } -- 2.39.5