* maint:
  hash: fix lookup_hash semantics
This commit is contained in:
Junio C Hamano 2008-02-22 14:01:43 -08:00
Родитель be8b906381 9ea0980a09
Коммит 22c430ad84
1 изменённых файлов: 1 добавлений и 1 удалений

2
hash.c
Просмотреть файл

@ -70,7 +70,7 @@ void *lookup_hash(unsigned int hash, struct hash_table *table)
{
if (!table->array)
return NULL;
return &lookup_hash_entry(hash, table)->ptr;
return lookup_hash_entry(hash, table)->ptr;
}
void **insert_hash(unsigned int hash, void *ptr, struct hash_table *table)