diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2011-10-24 18:20:12 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2011-10-24 18:20:12 +0200 |
commit | a57a6174875e05911039276f36f17cd538f494a3 (patch) | |
tree | 1eda199bf385b4a5d93b68520274687d20b66ccd | |
parent | 4577501e4063ff81ab608ec978602e1c497b0bd3 (diff) | |
parent | b6f82154ee39068f998fb0ad1275dcd0f90f5ad9 (diff) | |
download | vdr-plugin-eepg-a57a6174875e05911039276f36f17cd538f494a3.tar.gz vdr-plugin-eepg-a57a6174875e05911039276f36f17cd538f494a3.tar.bz2 |
Merge branch 'branch_na_ok' of ssh://192.168.1.138/home/dime/VDR/PLUGINS/src/eepg into Branch_na_ok
-rw-r--r-- | dish.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; } } |