Commit e4e1332f authored by Фёдор Буреев's avatar Фёдор Буреев
Browse files

Update src/mem.c

parent f8ad4f06
......@@ -125,7 +125,7 @@ static void* block_after( struct block_header const* block )
}
static bool blocks_continuous ( struct block_header const* fst, struct block_header const* snd )
{
return (void*)snd == block_after(fst);s
return (void*)snd == block_after(fst);
}
// готовая конструкция для проверки 2-х блоков на соединяемость
static bool mergeable(struct block_header const* restrict fst, struct block_header const* restrict snd)
......@@ -251,4 +251,4 @@ void _free( void* mem )
if(!(header->next) || !try_merge_with_next(header))
break;
}
}
\ No newline at end of file
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment