summaryrefslogtreecommitdiff
path: root/diseqc.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-05-21 22:07:08 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2011-05-21 22:07:08 +0200
commit7c1a04d7c3ec67db30bf9b8fbd0d8b23cedbd5cb (patch)
tree70e313e863d9da9839d8feb49fc20018ea307bd3 /diseqc.c
parent80e3c06fa7fee1df093f72ef01e015ea94157094 (diff)
downloadvdr-7c1a04d7c3ec67db30bf9b8fbd0d8b23cedbd5cb.tar.gz
vdr-7c1a04d7c3ec67db30bf9b8fbd0d8b23cedbd5cb.tar.bz2
Fixed a typo
Diffstat (limited to 'diseqc.c')
-rw-r--r--diseqc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/diseqc.c b/diseqc.c
index 205444cd..0168362c 100644
--- a/diseqc.c
+++ b/diseqc.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: diseqc.c 2.2 2010/02/06 15:43:31 kls Exp $
+ * $Id: diseqc.c 2.3 2011/05/21 22:07:08 kls Exp $
*/
#include "diseqc.h"
@@ -157,7 +157,7 @@ cDiseqc *cDiseqcs::Get(int Device, int Source, int Frequency, char Polarization)
if (Devices && !(Devices & (1 << Device - 1)))
continue;
if (p->Source() == Source && p->Slof() > Frequency && p->Polarization() == toupper(Polarization))
- return p;
+ return p;
}
return NULL;
}