summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-04-21 15:15:18 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-04-21 15:15:18 +0200
commit44878cdb6c73e7be2f68f3c2ec795a4d0b1b978e (patch)
tree4cc46d20d75e59a6dac379b74960737501b04b1e /timers.c
parent2e76e745978621bc9f33e12b84205bdb638012ba (diff)
downloadvdr-44878cdb6c73e7be2f68f3c2ec795a4d0b1b978e.tar.gz
vdr-44878cdb6c73e7be2f68f3c2ec795a4d0b1b978e.tar.bz2
Fixed several spelling errors
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/timers.c b/timers.c
index f620735f..3a5b0ba6 100644
--- a/timers.c
+++ b/timers.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: timers.c 1.57 2006/04/09 09:10:08 kls Exp $
+ * $Id: timers.c 1.58 2006/04/21 15:12:49 kls Exp $
*/
#include "timers.h"
@@ -292,7 +292,7 @@ int cTimer::GetWDay(time_t t)
{
struct tm tm_r;
int weekday = localtime_r(&t, &tm_r)->tm_wday;
- return weekday == 0 ? 6 : weekday - 1; // we start with monday==0!
+ return weekday == 0 ? 6 : weekday - 1; // we start with Monday==0!
}
bool cTimer::DayMatches(time_t t) const