[MPlayer-cvslog] r29400 - trunk/libvo/vo_fbdev.c

reimar subversion at mplayerhq.hu
Fri Jun 26 17:39:35 CEST 2009


Author: reimar
Date: Fri Jun 26 17:39:35 2009
New Revision: 29400

Log:
Fix indentation broken in last patch

Modified:
   trunk/libvo/vo_fbdev.c

Modified: trunk/libvo/vo_fbdev.c
==============================================================================
--- trunk/libvo/vo_fbdev.c	Fri Jun 26 17:38:40 2009	(r29399)
+++ trunk/libvo/vo_fbdev.c	Fri Jun 26 17:39:35 2009	(r29400)
@@ -972,7 +972,7 @@ static int config(uint32_t width, uint32
         mp_msg(MSGT_VO, MSGL_ERR, "can't fopen /dev/tty: %s\n", strerror(errno));
     }
 
-        vt_set_textarea(last_row, fb_yres);
+    vt_set_textarea(last_row, fb_yres);
 
     return 0;
 }
@@ -1056,7 +1056,7 @@ static void uninit(void)
         if (ioctl(fb_tty_fd, KDSETMODE, KD_TEXT) < 0)
             mp_msg(MSGT_VO, MSGL_WARN, "Can't restore text mode: %s\n", strerror(errno));
     }
-        vt_set_textarea(0, fb_orig_vinfo.yres);
+    vt_set_textarea(0, fb_orig_vinfo.yres);
     close(fb_tty_fd);
     close(fb_dev_fd);
     if (frame_buffer)


More information about the MPlayer-cvslog mailing list