diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-21 15:15:18 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-21 15:15:18 +0200 |
commit | 44878cdb6c73e7be2f68f3c2ec795a4d0b1b978e (patch) | |
tree | 4cc46d20d75e59a6dac379b74960737501b04b1e /tools.c | |
parent | 2e76e745978621bc9f33e12b84205bdb638012ba (diff) | |
download | vdr-44878cdb6c73e7be2f68f3c2ec795a4d0b1b978e.tar.gz vdr-44878cdb6c73e7be2f68f3c2ec795a4d0b1b978e.tar.bz2 |
Fixed several spelling errors
Diffstat (limited to 'tools.c')
-rw-r--r-- | tools.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: tools.c 1.116 2006/04/17 12:19:31 kls Exp $ + * $Id: tools.c 1.117 2006/04/21 15:12:47 kls Exp $ */ #include "tools.h" @@ -615,7 +615,7 @@ cString cString::sprintf(const char *fmt, ...) cString WeekDayName(int WeekDay) { char buffer[4]; - WeekDay = WeekDay == 0 ? 6 : WeekDay - 1; // we start with monday==0! + WeekDay = WeekDay == 0 ? 6 : WeekDay - 1; // we start with Monday==0! if (0 <= WeekDay && WeekDay <= 6) { const char *day = tr("MonTueWedThuFriSatSun"); day += WeekDay * 3; |