Skip to content

Commit

Permalink
Fix AllocXMemoryPool Example
Browse files Browse the repository at this point in the history
  • Loading branch information
simondevenish committed Nov 22, 2024
1 parent 191677a commit c41d59c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/allocx/memory_pool.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* - `0`: The block is free (available for allocation).
* - `1`: The block is allocated (in use).
* - For example - if the `free_list` is:
* byte: 0b00001101
* byte: 0b11000101
* blocks: [1][2][3][4][5][6][7][8]
* status: A F A F F F A A
* In this case:
Expand Down

0 comments on commit c41d59c

Please sign in to comment.