summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-06-10 14:00:36 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2020-06-10 14:00:36 +0200
commit709055980e6f6ed76399cdba032eb5094ec117f5 (patch)
treea2bc90b9d85163efd5cda5272862734c3c0c2193 /channels.h
parent576e21f2fdd4f7e65dcfa650961e2d40c7503e19 (diff)
downloadvdr-709055980e6f6ed76399cdba032eb5094ec117f5.tar.gz
vdr-709055980e6f6ed76399cdba032eb5094ec117f5.tar.bz2
Fixed the size of cChannel::dtypes[]
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels.h b/channels.h
index d368b558..de99830f 100644
--- a/channels.h
+++ b/channels.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: channels.h 4.4 2020/04/11 09:22:05 kls Exp $
+ * $Id: channels.h 4.5 2020/06/10 14:00:36 kls Exp $
*/
#ifndef __CHANNELS_H
@@ -105,7 +105,7 @@ private:
int atypes[MAXAPIDS + 1]; // list is zero-terminated
char alangs[MAXAPIDS][MAXLANGCODE2];
int dpids[MAXDPIDS + 1]; // list is zero-terminated
- int dtypes[MAXAPIDS + 1]; // list is zero-terminated
+ int dtypes[MAXDPIDS + 1]; // list is zero-terminated
char dlangs[MAXDPIDS][MAXLANGCODE2];
int spids[MAXSPIDS + 1]; // list is zero-terminated
char slangs[MAXSPIDS][MAXLANGCODE2];