From d08bf2fc44100bc4ee8400de1b8704519225533c Mon Sep 17 00:00:00 2001 From: attila Date: Sun, 13 Apr 2008 11:15:08 +0000 Subject: cosmetics: fix indentation git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26439 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/x11_common.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libvo/x11_common.c b/libvo/x11_common.c index 7145aaf537..00ac963664 100644 --- a/libvo/x11_common.c +++ b/libvo/x11_common.c @@ -379,14 +379,14 @@ void update_xinerama_info(void) { int num_screens; screens = XineramaQueryScreens(mDisplay, &num_screens); - for (screen = num_screens - 1; screen > 0; screen--) { - int left = screens[screen].x_org; - int right = left + screens[screen].width; - int top = screens[screen].y_org; - int bottom = top + screens[screen].height; - if (left <= x && x <= right && top <= y && y <= bottom) - break; - } + for (screen = num_screens - 1; screen > 0; screen--) { + int left = screens[screen].x_org; + int right = left + screens[screen].width; + int top = screens[screen].y_org; + int bottom = top + screens[screen].height; + if (left <= x && x <= right && top <= y && y <= bottom) + break; + } if (screen < 0) screen = 0; vo_screenwidth = screens[screen].width; -- cgit v1.2.3