Remove a bunch of redundant casts.
This commit is contained in:
parent
ee6d72f3b8
commit
4f59fc9967
125 changed files with 417 additions and 432 deletions
|
@ -74,7 +74,7 @@ as_free_hashtab(struct as_data *adp)
|
|||
for (i = 0; i < adp->hashsize; i++) {
|
||||
for (hp = adp->hashtab[i]; hp; hp = hp2) {
|
||||
hp2 = hp->next;
|
||||
free((char *)hp);
|
||||
free(hp);
|
||||
}
|
||||
adp->hashtab[i] = NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue