diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-09-11 22:44:49 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-09-11 22:44:49 +0000 |
commit | d170066550c0a689120ca0b3891beb186cf51bc1 (patch) | |
tree | 5f8cf095e4ed9c51307017359ac9807fa69d0c31 /iconv | |
parent | f6ad47269a0bcfb8d037d19579bd801efd7d926c (diff) | |
download | glibc-d170066550c0a689120ca0b3891beb186cf51bc1.tar glibc-d170066550c0a689120ca0b3891beb186cf51bc1.tar.gz glibc-d170066550c0a689120ca0b3891beb186cf51bc1.tar.bz2 glibc-d170066550c0a689120ca0b3891beb186cf51bc1.zip |
Update.
2000-09-11 Ulrich Drepper <drepper@redhat.com>
* iconv/skeleton.c: Fix last patch, add missing parameter to
unaligned function call.
Diffstat (limited to 'iconv')
-rw-r--r-- | iconv/skeleton.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/iconv/skeleton.c b/iconv/skeleton.c index f459ed588f..43d5d9e4a9 100644 --- a/iconv/skeleton.c +++ b/iconv/skeleton.c @@ -523,6 +523,7 @@ FUNCTION_NAME (struct __gconv_step *step, struct __gconv_step_data *data, /* Run the conversion loop. */ nstatus = GEN_unaligned (FROM_LOOP) (step, data, inptrp, inend, + &outbuf, (unsigned char *) outerr, lirreversiblep EXTRA_LOOP_ARGS); @@ -530,6 +531,7 @@ FUNCTION_NAME (struct __gconv_step *step, struct __gconv_step_data *data, /* Run the conversion loop. */ nstatus = GEN_unaligned (TO_LOOP) (step, data, inptrp, inend, + &outbuf, (unsigned char *) outerr, lirreversiblep EXTRA_LOOP_ARGS); |