diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/bcache.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index eb668c2..dad1e65 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2010-09-27 Tom Tromey <tromey@redhat.com> + * bcache.c (expand_hash_table): Use hash_function, not hash. + +2010-09-27 Tom Tromey <tromey@redhat.com> + * gdb_wchar.h: Change minimum libiconv to 0x108. 2010-09-24 Jan Kratochvil <jan.kratochvil@redhat.com> diff --git a/gdb/bcache.c b/gdb/bcache.c index 653d6fb..e6ca06c 100644 --- a/gdb/bcache.c +++ b/gdb/bcache.c @@ -184,7 +184,8 @@ expand_hash_table (struct bcache *bcache) struct bstring **new_bucket; next = s->next; - new_bucket = &new_buckets[(hash (&s->d.data, s->length) + new_bucket = &new_buckets[(bcache->hash_function (&s->d.data, + s->length) % new_num_buckets)]; s->next = *new_bucket; *new_bucket = s; |