From 709055980e6f6ed76399cdba032eb5094ec117f5 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Wed, 10 Jun 2020 14:00:36 +0200 Subject: Fixed the size of cChannel::dtypes[] --- channels.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'channels.h') 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]; -- cgit v1.2.3