From 2a068d20fbe9e59b9c43dbeb9fa54999bdb19e10 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 25 Nov 2000 01:26:30 +0000 Subject: Update. * locale/findlocale.c: Add casts to avoid warnings. * locale/localeinfo.h (LIMAGIC): Add cast to avoid warnings. * misc/efgcvt_r.c (fcvt_r): Use ssize_t instead of int and add cast to avoid warnings. * misc/tsearch.c (const_node): New type. (trecurse): Correct casts to avoid warnings. (__twalk): Likewise. * stdlib/tst-limits.c: Add z modifier to formats for WORD_BIT and LONG_BIT. * debug/backtrace-tst.c (compare): Add casts to avoid warnings. --- locale/localeinfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'locale/localeinfo.h') diff --git a/locale/localeinfo.h b/locale/localeinfo.h index 984696e024..d526794e51 100644 --- a/locale/localeinfo.h +++ b/locale/localeinfo.h @@ -33,7 +33,7 @@ #include /* For loaded_l10nfile definition. */ /* Magic number at the beginning of a locale data file for CATEGORY. */ -#define LIMAGIC(category) (0x20000828 ^ (category)) +#define LIMAGIC(category) ((unsigned int) (0x20000828 ^ (category))) /* Two special weight constants for the collation data. */ #define IGNORE_CHAR 2 -- cgit 1.4.1