Comment out unused vars.

This commit is contained in:
Ralf Corsepius
2009-10-26 07:49:50 +00:00
parent ea36feb427
commit 3066a0b4cb

View File

@@ -61,11 +61,11 @@ static void *test_allocate_block(void)
static void test_create_heap_with_gaps(void)
{
void *p1 = test_allocate_block();
void *p2 = test_allocate_block();
/* void *p2 = */ test_allocate_block();
void *p3 = test_allocate_block();
void *p4 = test_allocate_block();
/* void *p4 = */ test_allocate_block();
void *p5 = test_allocate_block();
void *p6 = test_allocate_block();
/* void *p6 = */ test_allocate_block();
_Heap_Free( &TestHeap, p1 );
_Heap_Free( &TestHeap, p3 );
_Heap_Free( &TestHeap, p5 );