compile fix

This commit is contained in:
netblue30 2022-01-18 14:25:55 -05:00
parent 4dd1e92ba1
commit e80fd42e69

View file

@ -49,7 +49,6 @@ HNode *dlist = NULL;
// speed up malloc/free
#define HNODE_MAX_MALLOC 16
static HNode *hnode_unused = NULL;
static int hnode_malloc_cnt = 0;
HNode *hmalloc(void) {
if (hnode_unused == NULL) {
hnode_unused = malloc(sizeof(HNode) * HNODE_MAX_MALLOC);