diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-03 19:45:26 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-03 19:45:26 +0200 |
commit | 56f9a25fb7a3e325a4bcd8c6b28fa6502f68842b (patch) | |
tree | 4987fd4187d12429b151733c9af5ecbc50b56de1 /package/xbmc/patches/patch-xbmc_utils_CharsetConverter_cpp | |
parent | 45790ac926148914b924262297872abed6953f9b (diff) |
update to gotham rc1, fix Darwin cross problems
Diffstat (limited to 'package/xbmc/patches/patch-xbmc_utils_CharsetConverter_cpp')
-rw-r--r-- | package/xbmc/patches/patch-xbmc_utils_CharsetConverter_cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/package/xbmc/patches/patch-xbmc_utils_CharsetConverter_cpp b/package/xbmc/patches/patch-xbmc_utils_CharsetConverter_cpp deleted file mode 100644 index 3c5753033..000000000 --- a/package/xbmc/patches/patch-xbmc_utils_CharsetConverter_cpp +++ /dev/null @@ -1,20 +0,0 @@ ---- xbmc-12.2.orig/xbmc/utils/CharsetConverter.cpp 2013-05-03 07:57:41.000000000 +0200 -+++ xbmc-12.2/xbmc/utils/CharsetConverter.cpp 2013-11-05 14:10:44.000000000 +0100 -@@ -140,7 +140,7 @@ static struct SCharsetMapping - #define ICONV_PREPARE(iconv) iconv=(iconv_t)-1 - #define ICONV_SAFE_CLOSE(iconv) if (iconv!=(iconv_t)-1) { iconv_close(iconv); iconv=(iconv_t)-1; } - --size_t iconv_const (void* cd, const char** inbuf, size_t *inbytesleft, -+size_t iconv_const (iconv_t cd, const char** inbuf, size_t *inbytesleft, - char* * outbuf, size_t *outbytesleft) - { - struct iconv_param_adapter { -@@ -157,7 +157,7 @@ size_t iconv_const (void* cd, const char - const char** p; - }; - -- return iconv((iconv_t)cd, iconv_param_adapter(inbuf), inbytesleft, outbuf, outbytesleft); -+ return iconv(cd, iconv_param_adapter(inbuf), inbytesleft, outbuf, outbytesleft); - } - - template<class INPUT,class OUTPUT> |