remove unused variable

This commit is contained in:
Sunrin SHIMURA (keen) 2016-06-19 10:44:12 +09:00
parent 4d31df6f14
commit f3845b7a0c
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ is_marked_at(uint32_t *bitmap, size_t index, size_t size)
static void *
heap_alloc_heap_page(struct heap_page *page, size_t nunits)
{
size_t index, jump;
size_t index;
union header *p;
for (index = page->current; index < HEADER_SIZE - (nunits + 1); ++index) {