2004-10-04 Roland McGrath <roland@redhat.com>

* hash.c (bfd_hash_set_default_size): Use const for table.
	Use size_t instead of int for variable compared to sizeof results.
This commit is contained in:
Roland McGrath 2004-10-05 18:09:38 +00:00
parent 10b3939b33
commit 724b3ea926

View file

@ -504,12 +504,12 @@ bfd_hash_traverse (table, func, info)
void
bfd_hash_set_default_size (bfd_size_type hash_size)
{
int index;
/* Extend this prime list if you want more granularity of hash table size. */
static bfd_size_type hash_size_primes[] =
static const bfd_size_type hash_size_primes[] =
{
1021, 4051, 8599, 16699
};
size_t index;
/* Work out best prime number near the hash_size. */
for (index = 0; index < ARRAY_SIZE (hash_size_primes) - 1; ++index)