mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
remove an unneeded check
This commit is contained in:
parent
04e4da654a
commit
6bbb9a75a3
1 changed files with 0 additions and 2 deletions
|
@ -281,8 +281,6 @@ Hash_GetList (hashtab_t *tab)
|
||||||
struct hashlink_s *lnk;
|
struct hashlink_s *lnk;
|
||||||
|
|
||||||
for (lnk = tab->tab[ind]; lnk; lnk = lnk->next) {
|
for (lnk = tab->tab[ind]; lnk; lnk = lnk->next) {
|
||||||
if (l - list == tab->num_ele)
|
|
||||||
Sys_Error ("hash.c: internal error\n");
|
|
||||||
*l++ = lnk->data;
|
*l++ = lnk->data;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue