remove useless comment

This commit is contained in:
starnakin 2024-07-31 13:56:18 +02:00
parent b11980eeca
commit d6d805c2ed

View File

@ -23,7 +23,6 @@ int chunk_split(chunk_t *chunk, size_t new_size)
chunk_t new_chunk;
#ifndef DEBUG
// NOT ENOUGH SIZE TO BE SPLITTED
if (chunk->size + 1 < new_size + HEADER_SIZE + get_align_increment(chunk->current + HEADER_SIZE))
write(2, "chunk too small to be splitted\n", 31);
#endif