Gentoo Archives: gentoo-commits

From: "Joerg Bornkessel (hd_brummy)" <hd_brummy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-skinelchi/files: compile-fix.diff
Date: Tue, 25 Mar 2008 23:00:47
Message-Id: E1JeI8K-0006ew-MX@stork.gentoo.org
1 hd_brummy 08/03/25 23:00:44
2
3 Added: compile-fix.diff
4 Log:
5 compile problems fixed
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.1 media-plugins/vdr-skinelchi/files/compile-fix.diff
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-skinelchi/files/compile-fix.diff?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-plugins/vdr-skinelchi/files/compile-fix.diff?rev=1.1&content-type=text/plain
13
14 Index: compile-fix.diff
15 ===================================================================
16 diff -Naur skinelchi-0.1.1pre2.orig/DisplayChannel.c skinelchi-0.1.1pre2/DisplayChannel.c
17 --- skinelchi-0.1.1pre2.orig/DisplayChannel.c 2008-03-25 23:13:26.037309537 +0100
18 +++ skinelchi-0.1.1pre2/DisplayChannel.c 2008-03-25 23:25:04.984510602 +0100
19 @@ -1347,7 +1347,7 @@
20 presentshorttext = strdup(present->ShortText());
21 else
22 presentshorttext = "";
23 - if (present->GetTimeString())
24 + if ((const char*)present->GetTimeString())
25 presenttimestring = strdup(present->GetTimeString());
26 else
27 presenttimestring = "";
28 @@ -1363,7 +1363,7 @@
29 followingshorttext = strdup(following->ShortText());
30 else
31 followingshorttext = "";
32 - if (following->GetTimeString())
33 + if ((const char*)following->GetTimeString())
34 followingtimestring = strdup(following->GetTimeString());
35 else
36 followingtimestring = "";
37
38
39
40 --
41 gentoo-commits@l.g.o mailing list