summaryrefslogtreecommitdiff
path: root/lib/epgservice.h
diff options
context:
space:
mode:
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()