summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-06-26 15:39:35 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-06-26 15:39:35 +0000
commit158aca92aec4a76825973714c92f3b3d458e7813 (patch)
tree9b0b1b7654a55ff73fabd9c2eb0e2a1b3d62fadb
parentfc24a623a20f61693c7a70f173bb00519ffc72db (diff)
downloadmpv-158aca92aec4a76825973714c92f3b3d458e7813.tar.bz2
mpv-158aca92aec4a76825973714c92f3b3d458e7813.tar.xz
Fix indentation broken in last patch
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29400 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libvo/vo_fbdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_fbdev.c b/libvo/vo_fbdev.c
index 9e8d79d995..128a2aac26 100644
--- a/libvo/vo_fbdev.c
+++ b/libvo/vo_fbdev.c
@@ -972,7 +972,7 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
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)