about summary refs log tree commit diff
path: root/wctype/wctrans.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-02-13 07:40:16 +0000
committerUlrich Drepper <drepper@redhat.com>2000-02-13 07:40:16 +0000
commitb02b9253e0c1770707ed791f0aa274af79886932 (patch)
treec96810ca1b2a2c7cb6a5a8ed48584736b6eb3bf5 /wctype/wctrans.c
parent65580ca855fa11f6e5bb0ab7f277abd82115151d (diff)
downloadglibc-b02b9253e0c1770707ed791f0aa274af79886932.tar.gz
glibc-b02b9253e0c1770707ed791f0aa274af79886932.tar.xz
glibc-b02b9253e0c1770707ed791f0aa274af79886932.zip
Update.
2000-02-12  Ulrich Drepper  <drepper@redhat.com>

	* locale/nl_langinfo.h: Add casts to prevent warnings.

	* wctype/iswctype_l.c: Use correct types for mapped data.
	* wctype/wcfuncs.c: Add one more comment for clarification.
	* wctype/wcfuncs_l.c: Use __ctype32_tolower and __ctype32_toupper.
	* wctype/wctrans.c: Likewise.
Diffstat (limited to 'wctype/wctrans.c')
-rw-r--r--wctype/wctrans.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/wctype/wctrans.c b/wctype/wctrans.c
index 5d7b5bda38..a9f83e40b9 100644
--- a/wctype/wctrans.c
+++ b/wctype/wctrans.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996.
 
@@ -45,9 +45,9 @@ wctrans (const char *property)
     return 0;
 
   if (cnt == 0)
-    return (wctrans_t) __ctype_toupper;
+    return (wctrans_t) __ctype32_toupper;
   else if (cnt == 1)
-    return (wctrans_t) __ctype_tolower;
+    return (wctrans_t) __ctype32_tolower;
 
   /* We have to search the table.  */
   result = (int32_t *) _NL_CURRENT (LC_CTYPE, _NL_NUM_LC_CTYPE + cnt - 2);