]> git.sesse.net Git - vlc/commitdiff
Indentation fix
authorJean-Paul Saman <jpsaman@videolan.org>
Thu, 21 Jun 2007 11:46:08 +0000 (11:46 +0000)
committerJean-Paul Saman <jpsaman@videolan.org>
Thu, 21 Jun 2007 11:46:08 +0000 (11:46 +0000)
modules/video_output/fb.c

index 3a268c2eac1499ce1cc15b90f18de4acfc21e00c..3c1238998cbffb231ea74e1fe639dddb2ccfa625 100644 (file)
@@ -440,11 +440,12 @@ static int panned=0;
          * some other app might have played with the framebuffer */
         p_vout->p_sys->var_info.xoffset = 0;
 
-if(panned < 0) {
-        ioctl( p_vout->p_sys->i_fd,
-               FBIOPAN_DISPLAY, &p_vout->p_sys->var_info );
-panned++;
-}
+        if( panned < 0 )
+        {
+                ioctl( p_vout->p_sys->i_fd,
+                       FBIOPAN_DISPLAY, &p_vout->p_sys->var_info );
+                panned++;
+        }
     }
 }
 
@@ -699,4 +700,3 @@ static void GfxMode( int i_tty )
         /*msg_Err( p_vout, "failed ioctl KDSETMODE KD_GRAPHICS" );*/
     }
 }
-