Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
crudelios committed Oct 30, 2024
1 parent b61b3b3 commit 95d5cee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ uint32_t buffer_load_dynamic(buffer *buf);
* Size of the piece in bytes will be calculated as (Standard header size + (array_size * struct_size))
* @param buf Buffer
* @param array_size Number of elements in the array. If you are saving only a single struct, then this must be 1.
* @param struct_size Size in bytes of a single entry of the array.
* @param element_size Size in bytes of a single entry of the array.
*/
void buffer_init_dynamic_array(buffer *buf, int32_t array_size, int32_t element_size);

Expand Down

0 comments on commit 95d5cee

Please sign in to comment.