diff options
author | Andreas Jaeger <aj@suse.de> | 2000-05-22 09:01:33 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-05-22 09:01:33 +0000 |
commit | 5748f418f04eb0bbd805703a8578b201c7179729 (patch) | |
tree | 20e3441a2d71b9f3e7860ecf04e5186cb134ff71 | |
parent | 4a624ae307f083a759f10224428440585a7f615e (diff) | |
download | glibc-5748f418f04eb0bbd805703a8578b201c7179729.zip glibc-5748f418f04eb0bbd805703a8578b201c7179729.tar.gz glibc-5748f418f04eb0bbd805703a8578b201c7179729.tar.bz2 |
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-22 Andreas Jaeger <aj@suse.de>
* iconv/tst-iconv1.c (main): Remove const from inbuf to follow
change in iconv.h.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | iconv/tst-iconv1.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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 3164349..7d180dd 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; |