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 /iconv/tst-iconv1.c | |
parent | 4a624ae307f083a759f10224428440585a7f615e (diff) | |
download | glibc-5748f418f04eb0bbd805703a8578b201c7179729.tar.gz glibc-5748f418f04eb0bbd805703a8578b201c7179729.tar.xz glibc-5748f418f04eb0bbd805703a8578b201c7179729.zip |
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.
Diffstat (limited to 'iconv/tst-iconv1.c')
-rw-r--r-- | iconv/tst-iconv1.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |