diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2020-09-16 13:48:33 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2020-09-16 13:48:33 +0200 |
commit | eebe7c798a689dd1c627f4af5203902665cc2f21 (patch) | |
tree | dbe69c8fc12f2535ae6b8646e8f738eecaab6bb8 /device.c | |
parent | 76a7bed57561285b1c32ac8d7a6c68dc607c3d39 (diff) | |
download | vdr-eebe7c798a689dd1c627f4af5203902665cc2f21.tar.gz vdr-eebe7c798a689dd1c627f4af5203902665cc2f21.tar.bz2 |
Fixed several typos
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: device.c 4.35 2020/07/13 08:16:41 kls Exp $ + * $Id: device.c 4.36 2020/09/16 13:48:33 kls Exp $ */ #include "device.h" @@ -803,7 +803,7 @@ bool cDevice::SwitchChannel(const cChannel *Channel, bool LiveView) if (LiveView) { isyslog("switching to channel %d %s (%s)", Channel->Number(), *Channel->GetChannelID().ToString(), Channel->Name()); cControl::Shutdown(); // prevents old channel from being shown too long if GetDevice() takes longer - // and, if decrypted, this removes the now superflous PIDs from the CAM, too + // and, if decrypted, this removes the now superfluous PIDs from the CAM, too } for (int i = 3; i--;) { switch (SetChannel(Channel, LiveView)) { @@ -826,7 +826,7 @@ bool cDevice::SwitchChannel(int Direction) Direction = sgn(Direction); if (Direction) { cControl::Shutdown(); // prevents old channel from being shown too long if GetDevice() takes longer - // and, if decrypted, this removes the now superflous PIDs from the CAM, too + // and, if decrypted, this removes the now superfluous PIDs from the CAM, too int n = CurrentChannel() + Direction; int first = n; LOCK_CHANNELS_READ; |