We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f08ebd commit e72cebbCopy full SHA for e72cebb
1 file changed
supervisor/shared/memory.c
@@ -43,7 +43,7 @@ void memory_init(void) {
43
}
44
45
void free_memory(supervisor_allocation* allocation) {
46
- uint8_t index = 0;
+ int32_t index = 0;
47
bool found = false;
48
for (index = 0; index < CIRCUITPY_SUPERVISOR_ALLOC_COUNT; index++) {
49
found = allocation == &allocations[index];
0 commit comments