diff options
Diffstat (limited to 'iconvdata/utf-16.c')
-rw-r--r-- | iconvdata/utf-16.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/iconvdata/utf-16.c b/iconvdata/utf-16.c index bbb546ef9a..44911feb42 100644 --- a/iconvdata/utf-16.c +++ b/iconvdata/utf-16.c @@ -206,8 +206,7 @@ gconv_end (struct __gconv_step *data) { \ result = DL_CALL_FCT (step_data->__trans.__trans_fct, \ (step, step_data, *inptrp, &inptr, \ - inend, *outptrp, &outptr, outend, \ - irreversible)); \ + inend, &outbuf, irreversible)); \ if (result != __GCONV_OK) \ break; \ } \ @@ -250,8 +249,7 @@ gconv_end (struct __gconv_step *data) { \ result = DL_CALL_FCT (step_data->__trans.__trans_fct, \ (step, step_data, *inptrp, &inptr, \ - inend, *outptrp, &outptr, outend, \ - irreversible)); \ + inend, &outbuf, irreversible)); \ if (result != __GCONV_OK) \ break; \ } \ |