summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitar Petrovski <dimeptr@gmail.com>2011-10-24 10:19:23 +0200
committerDimitar Petrovski <dimeptr@gmail.com>2011-10-24 10:19:23 +0200
commitb6f82154ee39068f998fb0ad1275dcd0f90f5ad9 (patch)
tree2dbce019d42adf915f79767982899fb908c27d00
parent54b9cde7363fa33091166e4d3b47109a30cc8f81 (diff)
downloadvdr-plugin-eepg-b6f82154ee39068f998fb0ad1275dcd0f90f5ad9.tar.gz
vdr-plugin-eepg-b6f82154ee39068f998fb0ad1275dcd0f90f5ad9.tar.bz2
fix compile
-rw-r--r--dish.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dish.c b/dish.c
index 83c71dd..e4fa4f9 100644
--- a/dish.c
+++ b/dish.c
@@ -15,6 +15,7 @@
#include <libsi/descriptor.h>
#include <string.h>
#include <stdlib.h>
+#include <vdr/tools.h>
namespace SI
{
@@ -265,7 +266,7 @@ namespace SI
{
decompressedShort = Decompress(Tid, data);
if (decompressedShort) {
- name = decompressedShort;
+ name = (char*)decompressedShort;
}
}