summaryrefslogtreecommitdiff
path: root/tools/iconv.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/iconv.h')
-rw-r--r--tools/iconv.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/iconv.h b/tools/iconv.h
index 3ce0fb28..947ecd50 100644
--- a/tools/iconv.h
+++ b/tools/iconv.h
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: iconv.h,v 1.5 2007-09-18 09:13:13 phintuka Exp $
+ * $Id: iconv.h,v 1.5.2.1 2008-09-26 13:14:37 phintuka Exp $
*
*/
@@ -74,11 +74,7 @@ cString cIConv::Translate(const char *Text) const
size_t inc = strlen(Text);
size_t outc = inc<2048 ? 2048 : inc+1;
-#ifdef __APPLE__
- const char *in = Text;
-#else
char *in = (char*)Text;
-#endif
char *buf = (char*)malloc(outc+1);
char *out = buf;