From b02b9253e0c1770707ed791f0aa274af79886932 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 13 Feb 2000 07:40:16 +0000 Subject: Update. 2000-02-12 Ulrich Drepper * 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. --- locale/nl_langinfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'locale/nl_langinfo.c') diff --git a/locale/nl_langinfo.c b/locale/nl_langinfo.c index 34772d3535..9b0b7c7e31 100644 --- a/locale/nl_langinfo.c +++ b/locale/nl_langinfo.c @@ -35,13 +35,13 @@ nl_langinfo (item) if (category < 0 || category >= LC_ALL) /* Bogus category: bogus item. */ - return ""; + return (char *) ""; data = *_nl_current[category]; if (index >= data->nstrings) /* Bogus index for this category: bogus item. */ - return ""; + return (char *) ""; /* Return the string for the specified item. */ return (char *) data->values[index].string; -- cgit 1.4.1