[Redbutton-devel] SF.net SVN: redbutton: [201] redbutton-download/trunk/channels.c
Brought to you by:
skilvington
|
From: <ski...@us...> - 2007-01-27 18:59:29
|
Revision: 201
http://svn.sourceforge.net/redbutton/?rev=201&view=rev
Author: skilvington
Date: 2007-01-27 10:59:26 -0800 (Sat, 27 Jan 2007)
Log Message:
-----------
not a fatal error if you don't have a DVB-T device - it just means you can't retune (yet)
Modified Paths:
--------------
redbutton-download/trunk/channels.c
Modified: redbutton-download/trunk/channels.c
===================================================================
--- redbutton-download/trunk/channels.c 2007-01-26 17:04:50 UTC (rev 200)
+++ redbutton-download/trunk/channels.c 2007-01-27 18:59:26 UTC (rev 201)
@@ -264,7 +264,11 @@
fatal("ioctl FE_GET_INFO: %s", strerror(errno));
if(fe_info.type != FE_OFDM)
- fatal("TODO: Only able to tune DVB-T devices at present");
+ {
+/* TODO */
+printf("TODO: Only able to tune DVB-T devices at present\n");
+return false;
+ }
/* see what we are currently tuned to */
if(ioctl(fe_fd, FE_GET_FRONTEND, ¤t_params) < 0)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|