put ICONV_CONST back in, you have to rerun autogen.sh and configure if you lack it
authorMatthias Braun <matze@braunis.de>
Mon, 6 Jun 2005 14:30:30 +0000 (14:30 +0000)
committerMatthias Braun <matze@braunis.de>
Mon, 6 Jun 2005 14:30:30 +0000 (14:30 +0000)
SVN-Revision: 2573

src/tinygettext/tinygettext.cpp

index 9ffd17c..f151e64 100644 (file)
@@ -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...