diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2020-06-10 14:00:36 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2020-06-10 14:00:36 +0200 |
commit | 709055980e6f6ed76399cdba032eb5094ec117f5 (patch) | |
tree | a2bc90b9d85163efd5cda5272862734c3c0c2193 /channels.h | |
parent | 576e21f2fdd4f7e65dcfa650961e2d40c7503e19 (diff) | |
download | vdr-709055980e6f6ed76399cdba032eb5094ec117f5.tar.gz vdr-709055980e6f6ed76399cdba032eb5094ec117f5.tar.bz2 |
Fixed the size of cChannel::dtypes[]
Diffstat (limited to 'channels.h')
-rw-r--r-- | channels.h | 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: 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]; |