one-line whitespace, didn't look too hard at the rest though. :)

This commit is contained in:
Jeff Teunissen 2004-01-06 11:05:34 +00:00
parent 462d726d14
commit 91fdd90674

View file

@ -422,7 +422,7 @@ Hash_GetList (hashtab_t *tab)
void **l;
size_t ind;
l = list = malloc ((tab->num_ele + 1) * sizeof (void*));
l = list = malloc ((tab->num_ele + 1) * sizeof (void *));
if (!list)
return 0;
for (ind = 0; ind < tab->tab_size; ind++) {