diff options
| author | phintuka <phintuka> | 2008-09-22 10:56:31 +0000 |
|---|---|---|
| committer | phintuka <phintuka> | 2008-09-22 10:56:31 +0000 |
| commit | 29e1bd11765d173b7b052bf97eae94f2ebf71c8b (patch) | |
| tree | b6953bbaf9f3d0f8adbf7a10aa281625131b7d95 /tools | |
| parent | 2725e700b463f18baf925bcdb9b73c6b8bc74ca7 (diff) | |
| download | xineliboutput-29e1bd11765d173b7b052bf97eae94f2ebf71c8b.tar.gz xineliboutput-29e1bd11765d173b7b052bf97eae94f2ebf71c8b.tar.bz2 | |
Removed OS X specific part as it is not needed anymore
(Reported by Tero Siironen)
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/iconv.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/iconv.h b/tools/iconv.h index 3ce0fb28..be7647b6 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.6 2008-09-22 10:56:31 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; |
