oops, left out var decl

This commit is contained in:
Ken Raeburn 1994-06-02 23:37:45 +00:00
parent 4b82ae34dc
commit a8773b7d26

View file

@ -580,6 +580,7 @@ hash_new_table (size, ptr)
int size;
hash_table *ptr;
{
int i;
ptr->size = size;
ptr->table = (hash_entry **) xmalloc (size * (sizeof (hash_entry *)));
/* Fill with null-pointer, not zero-bit-pattern. */