diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-12-19 02:24:26 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-12-19 02:24:26 +0000 |
commit | 86d131f83358d29e075aed187731785761eb3e97 (patch) | |
tree | f8596f50887a36c6e0a1434aaca4bc9aaced091b /libio/iofwide.c | |
parent | d7fb2a9242100a6fac58d1241d9215fc4feb2514 (diff) | |
download | glibc-86d131f83358d29e075aed187731785761eb3e97.tar glibc-86d131f83358d29e075aed187731785761eb3e97.tar.gz glibc-86d131f83358d29e075aed187731785761eb3e97.tar.bz2 glibc-86d131f83358d29e075aed187731785761eb3e97.zip |
* libio/iofwide.c (__libio_codecvt): Mark as const.
(__libio_translit): Likewise.
Diffstat (limited to 'libio/iofwide.c')
-rw-r--r-- | libio/iofwide.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libio/iofwide.c b/libio/iofwide.c index 7af9a633f8..be3627ca99 100644 --- a/libio/iofwide.c +++ b/libio/iofwide.c @@ -68,7 +68,7 @@ static int do_always_noconv (struct _IO_codecvt *codecvt); /* The functions used in `codecvt' for libio are always the same. */ -struct _IO_codecvt __libio_codecvt = +const struct _IO_codecvt __libio_codecvt = { .__codecvt_destr = NULL, /* Destructor, never used. */ .__codecvt_do_out = do_out, @@ -82,7 +82,7 @@ struct _IO_codecvt __libio_codecvt = #ifdef _LIBC -struct __gconv_trans_data __libio_translit attribute_hidden = +const struct __gconv_trans_data __libio_translit attribute_hidden = { .__trans_fct = __gconv_transliterate }; |