summaryrefslogtreecommitdiff
path: root/epg.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-02-13 15:00:24 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2012-02-13 15:00:24 +0100
commitb74cb56d2b90b8e263942befc2d597e6572f2408 (patch)
tree52173096b365eb0dcf94de26f4256c28a91a1e94 /epg.c
parent5e16ed7aab305bd146406795e71af3ab148b7cc0 (diff)
downloadvdr-b74cb56d2b90b8e263942befc2d597e6572f2408.tar.gz
vdr-b74cb56d2b90b8e263942befc2d597e6572f2408.tar.bz2
Added a missing '.' after the month in VPS strings
Diffstat (limited to 'epg.c')
-rw-r--r--epg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epg.c b/epg.c
index f76a9abf..2ff10528 100644
--- a/epg.c
+++ b/epg.c
@@ -7,7 +7,7 @@
* Original version (as used in VDR before 1.3.0) written by
* Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>.
*
- * $Id: epg.c 2.10 2012/02/13 14:51:29 kls Exp $
+ * $Id: epg.c 2.11 2012/02/13 14:58:19 kls Exp $
*/
#include "epg.h"
@@ -424,7 +424,7 @@ cString cEvent::GetVpsString(void) const
{
char buf[25];
struct tm tm_r;
- strftime(buf, sizeof(buf), "%d.%m %R", localtime_r(&vps, &tm_r));
+ strftime(buf, sizeof(buf), "%d.%m. %R", localtime_r(&vps, &tm_r));
return buf;
}