diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2019-05-28 15:54:22 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2019-05-28 15:54:22 +0200 |
commit | c2634a7ccf815bedc26671b803dc571f0544fc73 (patch) | |
tree | a1624fe6c0da3ffbdbbbd3d37f4dfd4b1b645e79 /sections.c | |
parent | e8ae4afd0961cc93cbca3830fe065f6da9d806c9 (diff) | |
download | vdr-c2634a7ccf815bedc26671b803dc571f0544fc73.tar.gz vdr-c2634a7ccf815bedc26671b803dc571f0544fc73.tar.bz2 |
Fixed inconsistent behavior in case only certain devices are used (selected by the '-D' option)
Diffstat (limited to 'sections.c')
-rw-r--r-- | sections.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: sections.c 3.1 2015/01/14 11:35:53 kls Exp $ + * $Id: sections.c 4.1 2019/05/28 14:09:04 kls Exp $ */ #include "sections.h" @@ -44,7 +44,7 @@ cSectionHandler::cSectionHandler(cDevice *Device) { shp = new cSectionHandlerPrivate; device = Device; - SetDescription("device %d section handler", device->CardIndex() + 1); + SetDescription("device %d section handler", device->DeviceNumber() + 1); statusCount = 0; on = false; waitForLock = false; |