Skip to content

Commit b2ce955

Browse files
eatvectorRbb666
authored andcommitted
Remove extra semicolon in src/memheap.c
1 parent c3125df commit b2ce955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/memheap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ void rt_memheap_free(void *ptr)
685685

686686
if (insert_header)
687687
{
688-
struct rt_memheap_item *n = heap->free_list->next_free;;
688+
struct rt_memheap_item *n = heap->free_list->next_free;
689689
#if defined(RT_MEMHEAP_BEST_MODE)
690690
rt_size_t blk_size = MEMITEM_SIZE(header_ptr);
691691
for (;n != heap->free_list; n = n->next_free)

0 commit comments

Comments
 (0)