about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--iconv/tst-iconv1.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a83f8b4b02..758d918a71 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-22  Andreas Jaeger  <aj@suse.de>
+
+	* iconv/tst-iconv1.c (main): Remove const from inbuf to follow
+	change in iconv.h.
+
 2000-05-19  Andreas Jaeger  <aj@suse.de>
 
 	* sysdeps/unix/sysv/linux/i386/i686/sysdep.h
diff --git a/iconv/tst-iconv1.c b/iconv/tst-iconv1.c
index 316434970b..7d180ddd50 100644
--- a/iconv/tst-iconv1.c
+++ b/iconv/tst-iconv1.c
@@ -10,7 +10,7 @@ main (void)
   char utf8[5];
   wchar_t ucs4[5];
   iconv_t cd;
-  const char *inbuf;
+  char *inbuf;
   char *outbuf;
   size_t inbytes;
   size_t outbytes;