update justfile to not make so much garbage

This commit is contained in:
2026-05-06 20:52:46 +02:00
parent 7bbe0747c5
commit 1c19b4435c
2 changed files with 12 additions and 6 deletions
+1 -1
View File
@@ -234,7 +234,7 @@ void map_assure_growable_by_1(void **this, const char *file, int line) {
// The reason for re-hashing is that all hashes are moduloed by the
// size of the mapping array, so the resulting hash will likely change.
for ( unsigned int i = 0; i < header->n_items; i++ ) {
void *pair = &(*this)[i*header->item_size];
void *pair = &((uint8_t *)(*this))[i*header->item_size];
// This is okay, because we absolutely know that the keys don't already
// exist. (assuming all the other code for map is doing it's job)