Updated README

This commit is contained in:
2025-02-28 11:30:01 +11:00
parent d3b59eb0da
commit 4b21e61df0
2 changed files with 6 additions and 21 deletions

View File

@@ -25,7 +25,6 @@ Toy_Bucket* Toy_allocateBucket(unsigned int capacity) {
}
unsigned char* Toy_partitionBucket(Toy_Bucket** bucketHandle, unsigned int amount) {
//BUGFIX: the endpoint must be aligned to the word size, otherwise you'll get a bus error from moving pointers
amount = (amount + 3) & ~3;