From 00de59a632eecc23a5eb1ddbadb8a770cd481f43 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 11 Feb 1997 04:45:23 +0000 Subject: update from main archive 970210 1997-02-11 05:27 Ulrich Drepper * locale/weight.h (collate_rules): It's an u_int32_t array. (get_weight): Compute initial SLOT value correctly. 1997-02-10 17:45 Ulrich Drepper * string/argz-ctsep.c: Initialize *LEN when successful. * libio/vsnprintf.c: If MAXLEN is 0 return 0. * stdio/vsnprintf.c: Likewise. Reported by Philip Blundell . 1997-02-06 13:49 Andreas Schwab * rellns-sh: No need to check for existance of first parameter. --- locale/weight.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'locale') diff --git a/locale/weight.h b/locale/weight.h index 0d6ef51722..424e493209 100644 --- a/locale/weight.h +++ b/locale/weight.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Ulrich Drepper, . @@ -52,7 +52,7 @@ typedef struct weight_t #define collate_undefined \ (_NL_CURRENT_WORD (LC_COLLATE, _NL_COLLATE_UNDEFINED)) #define collate_rules \ - (_NL_CURRENT (LC_COLLATE, _NL_COLLATE_RULES)) + ((u_int32_t *) _NL_CURRENT (LC_COLLATE, _NL_COLLATE_RULES)) static __inline int get_weight (const STRING_TYPE **str, weight_t *result); @@ -69,7 +69,7 @@ get_weight (const STRING_TYPE **str, weight_t *result) const size_t level_size = collate_hash_size * (collate_nrules + 1); size_t level; - slot = (ch * (collate_nrules + 1)) % collate_hash_size; + slot = (ch % collate_hash_size) * (collate_nrules + 1); level = 0; while (__collate_table[slot] != (u_int32_t) ch) -- cgit v1.2.3