diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-10-17 15:36:13 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-10-17 15:36:13 +0200 |
commit | d5c46a4ad559c11ea7fac5c175dc5fbc413adc23 (patch) | |
tree | e4f00c9765ea9fbf4353c5547f745b48087f17a5 /dvbdevice.c | |
parent | 8de5fbcbe10d9afb19b4c1a122725ac3c2c43200 (diff) | |
download | vdr-d5c46a4ad559c11ea7fac5c175dc5fbc413adc23.tar.gz vdr-d5c46a4ad559c11ea7fac5c175dc5fbc413adc23.tar.bz2 |
Fixed a typo
Diffstat (limited to 'dvbdevice.c')
-rw-r--r-- | dvbdevice.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dvbdevice.c b/dvbdevice.c index e3335850..fd0a0d0d 100644 --- a/dvbdevice.c +++ b/dvbdevice.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.c 1.66 2003/10/17 13:31:06 kls Exp $ + * $Id: dvbdevice.c 1.67 2003/10/17 15:36:13 kls Exp $ */ #include "dvbdevice.h" @@ -320,6 +320,7 @@ cDvbDevice::cDvbDevice(int n) // Devices that are present on all card types: int fd_frontend = DvbOpen(DEV_DVB_FRONTEND, n, O_RDWR | O_NONBLOCK); + // Devices that are only present on cards with decoders: fd_osd = DvbOpen(DEV_DVB_OSD, n, O_RDWR); |