diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2009-07-04 20:56:41 +0200 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2009-07-04 20:56:41 +0200 |
commit | 5a0aa41728efdce4931cce6b527040459d12518b (patch) | |
tree | cd624eadf027182fa7db371f0000ab8b1167cb4e /searchtimer_thread.c | |
parent | 236d130b574d7a2559c448d061c64d034e93a94e (diff) | |
download | vdr-plugin-epgsearch-5a0aa41728efdce4931cce6b527040459d12518b.tar.gz vdr-plugin-epgsearch-5a0aa41728efdce4931cce6b527040459d12518b.tar.bz2 |
fixes for gcc-4.4
Diffstat (limited to 'searchtimer_thread.c')
-rw-r--r-- | searchtimer_thread.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searchtimer_thread.c b/searchtimer_thread.c index c2aca95..1a3fed1 100644 --- a/searchtimer_thread.c +++ b/searchtimer_thread.c @@ -600,8 +600,8 @@ char* cSearchTimerThread::SummaryExtended(cSearchExt* searchExt, cTimer* Timer, if (!isempty(aux)) { tmpaux = strdup(aux); - char* begin = strstr(aux, "<epgsearch>"); - char* end = strstr(aux, "</epgsearch>"); + const char* begin = strstr(aux, "<epgsearch>"); + const char* end = strstr(aux, "</epgsearch>"); if (begin && end) { if (begin == aux) strcpy(tmpaux, ""); else strn0cpy(tmpaux, aux, begin-aux+1); |