Skip to content

Commit

Permalink
compile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
netblue30 committed Jan 18, 2022
1 parent 4dd1e92 commit e80fd42
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/fnettrace/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e80fd42

Please sign in to comment.