From: Matthias Braun Date: Mon, 6 Jun 2005 14:30:30 +0000 (+0000) Subject: put ICONV_CONST back in, you have to rerun autogen.sh and configure if you lack it X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=17bc6d38803436ca400fad50d7a59bb32b5006f9;p=supertux.git put ICONV_CONST back in, you have to rerun autogen.sh and configure if you lack it SVN-Revision: 2573 --- diff --git a/src/tinygettext/tinygettext.cpp b/src/tinygettext/tinygettext.cpp index 9ffd17ca6..f151e64b4 100644 --- a/src/tinygettext/tinygettext.cpp +++ b/src/tinygettext/tinygettext.cpp @@ -49,7 +49,7 @@ std::string convert(const std::string& text, strcpy(in_orig, text.c_str()); char* out = out_orig; - char* in = in_orig; + ICONV_CONST char* in = in_orig; size_t out_len_temp = out_len; // iconv is counting down the bytes it has // written from this...