diff options
author | Tom Tromey <tromey@redhat.com> | 2010-09-27 17:41:36 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2010-09-27 17:41:36 +0000 |
commit | d3aff959354bb71f78f0f2077a3c1827452d24b3 (patch) | |
tree | acd80b346b453762d910512158daee7a12312100 /gdb/bcache.c | |
parent | 716b65bf40998f09290ef4806168edb636c4bacc (diff) | |
download | gdb-d3aff959354bb71f78f0f2077a3c1827452d24b3.zip gdb-d3aff959354bb71f78f0f2077a3c1827452d24b3.tar.gz gdb-d3aff959354bb71f78f0f2077a3c1827452d24b3.tar.bz2 |
* bcache.c (expand_hash_table): Use hash_function, not hash.
Diffstat (limited to 'gdb/bcache.c')
-rw-r--r-- | gdb/bcache.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; |