Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

buflib: correct a confusingly indented comment

Change-Id: I9ef13d697c4abb81883d4a47273e69fcc2dafe37

+4 -4
+4 -4
firmware/buflib.c
··· 713 713 } 714 714 else 715 715 { 716 - /* Otherwise, set block to the newly-freed block, and mark it free, before 717 - * continuing on, since the code below expects block to point to a free 718 - * block which may have free space after it. 719 - */ 716 + /* Otherwise, set block to the newly-freed block, and mark it free, 717 + * before continuing on, since the code below expects block to point 718 + * to a free block which may have free space after it. */ 720 719 block = freed_block; 721 720 block->val = -block->val; 722 721 } 722 + 723 723 next_block = block - block->val; 724 724 /* Check if we are merging with the free space at alloc_end. */ 725 725 if (next_block == ctx->alloc_end)