Fix a typo
This commit is contained in:
parent
6b82c70835
commit
665a5d3044
|
@ -169,7 +169,7 @@ FcHashTableAdd (FcHashTable *table,
|
||||||
|
|
||||||
return !ret;
|
return !ret;
|
||||||
}
|
}
|
||||||
for (prev = &table->buckets[hash & FC_HASH_SIZE];
|
for (prev = &table->buckets[hash % FC_HASH_SIZE];
|
||||||
(b = *prev); prev = &(b->next))
|
(b = *prev); prev = &(b->next))
|
||||||
{
|
{
|
||||||
if (!table->compare_func (bucket->key, key))
|
if (!table->compare_func (bucket->key, key))
|
||||||
|
|
Loading…
Reference in New Issue