aboutsummaryrefslogtreecommitdiffstats
path: root/symbol.c
diff options
context:
space:
mode:
Diffstat (limited to 'symbol.c')
-rw-r--r--symbol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/symbol.c b/symbol.c
index d63277b1..51e3cf23 100644
--- a/symbol.c
+++ b/symbol.c
@@ -916,7 +916,7 @@ free_bc_internal(INSTRUCTION *cp)
static void
free_bc_mempool(struct instruction_mem_pool *pool, int size)
{
- int first = 1;
+ bool first = true;
struct instruction_block *block, *next;
for (block = pool->block_list; block; block = next) {
@@ -929,7 +929,7 @@ free_bc_mempool(struct instruction_mem_pool *pool, int size)
}
next = block->next;
efree(block);
- first = 0;
+ first = false;
}
}