diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-04-09 11:10:30 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-04-09 11:10:30 +0200 |
commit | 1682e2708dc1e1f25de74093db8179ad3d64f23c (patch) | |
tree | b48fd8cb170e546d951a03307c90f752ee277403 /sources.c | |
parent | 71fb3e84da3eb0bf559c4ca41fd25272941cc731 (diff) | |
download | vdr-1682e2708dc1e1f25de74093db8179ad3d64f23c.tar.gz vdr-1682e2708dc1e1f25de74093db8179ad3d64f23c.tar.bz2 |
Fixed double semicolon
Diffstat (limited to 'sources.c')
-rw-r--r-- | sources.c | 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: sources.c 2.2 2010/02/28 15:15:39 kls Exp $ + * $Id: sources.c 3.1 2013/04/09 11:10:30 kls Exp $ */ #include "sources.h" @@ -95,7 +95,7 @@ int cSource::FromData(eSourceType SourceType, int Position, bool East) if (SourceType == stSat) { if (East) Position = -Position; - code |= (Position & st_Pos);; + code |= (Position & st_Pos); } return code; } |