diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2015-09-01 11:14:27 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2015-09-01 11:14:27 +0200 |
commit | 3cd5294d8a337ee5cd2ec894c9fbe04ad3a7690d (patch) | |
tree | da57ce74189de9bfb27e1a747063c37cd62de501 /sourceparams.c | |
parent | 8a7bc6a0bbf60cae8b6391a630880aad5cba3363 (diff) | |
download | vdr-3cd5294d8a337ee5cd2ec894c9fbe04ad3a7690d.tar.gz vdr-3cd5294d8a337ee5cd2ec894c9fbe04ad3a7690d.tar.bz2 |
Implemented strict locking of global lists
Diffstat (limited to 'sourceparams.c')
-rw-r--r-- | sourceparams.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sourceparams.c b/sourceparams.c index 3eec406a..6e92bbef 100644 --- a/sourceparams.c +++ b/sourceparams.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: sourceparams.c 3.1 2014/03/09 12:03:09 kls Exp $ + * $Id: sourceparams.c 4.1 2015/08/02 11:56:39 kls Exp $ */ #include "sourceparams.h" @@ -33,7 +33,7 @@ cSourceParam::cSourceParam(char Source, const char *Description) cSourceParams SourceParams; -cSourceParam *cSourceParams::Get(char Source) const +cSourceParam *cSourceParams::Get(char Source) { for (cSourceParam *sp = First(); sp; sp = Next(sp)) { if (sp->Source() == Source) |