mirror of git://sourceware.org/git/glibc.git
Update.
* locale/programs/repertoire.c (repertoiremap_hash): Don't specify array size.
This commit is contained in:
parent
00783f603d
commit
646b69707e
|
@ -1,5 +1,8 @@
|
|||
2000-09-22 Andreas Jaeger <aj@suse.de>
|
||||
|
||||
* locale/programs/repertoire.c (repertoiremap_hash): Don't specify
|
||||
array size.
|
||||
|
||||
* sysdeps/alpha/fpu/libm-test-ulps: New file.
|
||||
From Christian Iseli <chris@ludwig-alpha.unil.ch>.
|
||||
|
||||
|
|
|
@ -360,7 +360,7 @@ repertoire_compare (const void *p1, const void *p2)
|
|||
static const struct keyword_t *
|
||||
repertoiremap_hash (const char *str, unsigned int len)
|
||||
{
|
||||
static const struct keyword_t wordlist[0] =
|
||||
static const struct keyword_t wordlist[] =
|
||||
{
|
||||
{"escape_char", tok_escape_char, 0},
|
||||
{"comment_char", tok_comment_char, 0},
|
||||
|
|
Loading…
Reference in New Issue