Merge another if condition check to lessen differences to vo_fbdev.c.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27995 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-11-23 13:51:16 +00:00
parent 2a044df222
commit c6af321ba7
1 changed files with 1 additions and 2 deletions

View File

@ -229,8 +229,7 @@ static int config(uint32_t width, uint32_t height, uint32_t d_width,
for (temp = 0; temp < fb_size; temp += 4)
memcpy(frame_buffer + temp, (void *) &black, 4);
vt_fd = open(TTY_DEV_NAME, O_WRONLY);
if (vt_doit && vt_fd == -1) {
if (vt_doit && (vt_fd = open(TTY_DEV_NAME, O_WRONLY)) == -1) {
mp_msg(MSGT_VO, MSGL_ERR, "Can't open %s: %s\n", TTY_DEV_NAME, strerror(errno));
vt_doit = 0;
}