diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-08-30 00:02:38 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-08-30 00:02:38 +0000 |
commit | 34e55074c41feda49d542822de7807d5e2e366d3 (patch) | |
tree | 064dca9eef92a34e68a456649801d4a2468235a6 /iconv | |
parent | 076bfcf612a1f774b214e335184d010b60bfad40 (diff) | |
download | glibc-34e55074c41feda49d542822de7807d5e2e366d3.tar glibc-34e55074c41feda49d542822de7807d5e2e366d3.tar.gz glibc-34e55074c41feda49d542822de7807d5e2e366d3.tar.bz2 glibc-34e55074c41feda49d542822de7807d5e2e366d3.zip |
Update.
2000-08-29 Ulrich Drepper <drepper@redhat.com>
* charmaps/GB18030: Add entries from GBK not present here.
* SUPPORTED: Add zh_TW.EUC-JP and zh_CN.GB18030.
* locales/iso14651_t1: Use hexadecimal ellipsis in <HAN> script.
Diffstat (limited to 'iconv')
-rw-r--r-- | iconv/gconv_db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iconv/gconv_db.c b/iconv/gconv_db.c index 50cedd6256..ed2698a628 100644 --- a/iconv/gconv_db.c +++ b/iconv/gconv_db.c @@ -311,9 +311,9 @@ increment_counter (struct __gconv_step *steps, size_t nsteps) steps[cnt].__end_fct = steps[cnt].__shlib_handle->end_fct; if (steps[cnt].__end_fct != NULL) - DL_CALL_FCT (steps[cnt].__end_fct, &steps[cnt]); + DL_CALL_FCT (steps[cnt].__end_fct, (&steps[cnt])); if (steps[cnt].__init_fct != NULL) - DL_CALL_FCT (steps[cnt].__init_fct, &steps[cnt]); + DL_CALL_FCT (steps[cnt].__init_fct, (&steps[cnt])); } return result; } |