summaryrefslogtreecommitdiff
path: root/lib/epgservice.h
diff options
context:
space:
mode:
authorhorchi <vdr@jwendel.de>2017-12-21 18:02:38 +0100
committerhorchi <vdr@jwendel.de>2017-12-21 18:02:38 +0100
commit6c5b1d1729ddec6b4815e5f4115544e0c9f47ac3 (patch)
tree07ee8c7dbfeb6b74519a7ae376885012fd9df99d /lib/epgservice.h
parentfc626c15ac0e98aeec57f92c0b5aa6072a752e2f (diff)
downloadvdr-plugin-epg2vdr-1.1.76.tar.gz
vdr-plugin-epg2vdr-1.1.76.tar.bz2
2017-12-21 version 1.1.76 (horchi)\n - change: backward compatibility to vdr 2.2.0 - second try\n - change: g++ 7 porting\n\n1.1.76
Diffstat (limited to 'lib/epgservice.h')
-rw-r--r--lib/epgservice.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/epgservice.h b/lib/epgservice.h
index ff32e3a..36d513e 100644
--- a/lib/epgservice.h
+++ b/lib/epgservice.h
@@ -301,7 +301,7 @@ class cUserTimes
if (strchr(strTime, ':'))
{
hhmm = atoi(strTime) * 100 + atoi(strchr(strTime, ':')+1);
- sprintf(hhmmStr, "%02d:%02d", hhmm / 100, hhmm % 100);
+ sprintf(hhmmStr, "%02d%02d", hhmm / 100, hhmm % 100);
mode = mTime;
}
else if (*strTime == '@')
@@ -366,7 +366,7 @@ class cUserTimes
char* title;
char* search;
int hhmm;
- char hhmmStr[5+TB];
+ char hhmmStr[15+TB];
};
cUserTimes()