summaryrefslogtreecommitdiff
path: root/osd.c
diff options
context:
space:
mode:
authorSascha Volkenandt <sascha@akv-soft.de>2005-01-09 19:42:00 +0100
committerSascha Volkenandt <sascha@akv-soft.de>2005-01-09 19:42:00 +0100
commita32763d16f82ef6055430d69100784522b631bd6 (patch)
tree76299c1f75a3a32a44cd8804c112c257cc62f41f /osd.c
parent2e4f67e1a49a479db365bfb44fbc1aeac80d518a (diff)
downloadvdr-plugin-osdpip-a32763d16f82ef6055430d69100784522b631bd6.tar.gz
vdr-plugin-osdpip-a32763d16f82ef6055430d69100784522b631bd6.tar.bz2
Release version 0.0.7.1v0.0.7.1
- adapted to VDR 1.3.18+ (should work with older versions, too)
Diffstat (limited to 'osd.c')
-rw-r--r--osd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/osd.c b/osd.c
index 19dc43d..e7e2ca0 100644
--- a/osd.c
+++ b/osd.c
@@ -697,7 +697,7 @@ void cOsdPipObject::ShowChannelInfo(const cChannel * channel, bool show)
if ((present = schedule->GetPresentEvent()) != NULL) {
presentTitle = present->Title();
if (!isempty(presentTitle)) {
- sprintf(line2, "%s %s", present->GetTimeString(), presentTitle);
+ sprintf(line2, "%s %s", (const char*)present->GetTimeString(), presentTitle);
#if VDRVERSNUM < 10307
while (m_Osd->Width(line2) > OsdPipSetup.InfoWidth - 10) {
line2[strlen(line2) - 1] = 0;