about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-12-19 00:24:49 +0000
committerUlrich Drepper <drepper@redhat.com>2005-12-19 00:24:49 +0000
commitbd62cef6d286a5f4a300ae14aa42a473bbf288cc (patch)
tree5a2f4e7b043d7b429515e3a005d70310e7286fc2
parentcafdac626c6aa3ee56124594b3fda2ae102a6537 (diff)
downloadglibc-bd62cef6d286a5f4a300ae14aa42a473bbf288cc.tar.gz
glibc-bd62cef6d286a5f4a300ae14aa42a473bbf288cc.tar.xz
glibc-bd62cef6d286a5f4a300ae14aa42a473bbf288cc.zip
(to_wc): Mark as const. (to_mb): Likewise.
-rw-r--r--wcsmbs/wcsmbsload.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/wcsmbs/wcsmbsload.c b/wcsmbs/wcsmbsload.c
index 1d7374b386..e82b1ffaff 100644
--- a/wcsmbs/wcsmbsload.c
+++ b/wcsmbs/wcsmbsload.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998,1999,2000,2001,2002,2004 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2002,2004,2005 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
 
@@ -29,7 +29,7 @@
 
 
 /* These are the descriptions for the default conversion functions.  */
-static struct __gconv_step to_wc =
+static const struct __gconv_step to_wc =
 {
   .__shlib_handle = NULL,
   .__modname = NULL,
@@ -48,7 +48,7 @@ static struct __gconv_step to_wc =
   .__data = NULL
 };
 
-static struct __gconv_step to_mb =
+static const struct __gconv_step to_mb =
 {
   .__shlib_handle = NULL,
   .__modname = NULL,
@@ -71,9 +71,9 @@ static struct __gconv_step to_mb =
 /* For the default locale we only have to handle ANSI_X3.4-1968.  */
 const struct gconv_fcts __wcsmbs_gconv_fcts_c =
 {
-  .towc = &to_wc,
+  .towc = (struct __gconv_step *) &to_wc,
   .towc_nsteps = 1,
-  .tomb = &to_mb,
+  .tomb = (struct __gconv_step *) &to_mb,
   .tomb_nsteps = 1
 };