This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/xawtv3.git tree:
Subject: v4l-conf.c: Don't abend if VT_GETSTATE is not supported Author: Mauro Carvalho Chehab <[email protected]> Date: Thu Feb 10 17:49:19 2011 -0200 Signed-off-by: Mauro Carvalho Chehab <[email protected]> console/v4l-conf.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- http://git.linuxtv.org/xawtv3.git?a=commitdiff;h=b9b92e77602a1428079190aa19313820da7df060 diff --git a/console/v4l-conf.c b/console/v4l-conf.c index 99f2b90..cbedd11 100644 --- a/console/v4l-conf.c +++ b/console/v4l-conf.c @@ -286,8 +286,8 @@ displayinfo_fbdev(struct DISPLAYINFO *d) exit(1); } if (-1 == ioctl(fd, VT_GETSTATE, &vstat)) { - perror("ioctl VT_GETSTATE"); - exit(1); + perror("VT_GETSTATE is not supported"); + return; } close(fd); c2m.console = vstat.v_active; _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
