swap int for mp_int_t
This commit is contained in:
parent
9e2235d7f7
commit
0d5b400b33
2
main.c
2
main.c
|
@ -982,7 +982,7 @@ int __attribute__((used)) main(void) {
|
|||
|
||||
// Pystack variables have to exist even in stackless for the function calls
|
||||
supervisor_allocation *pystack;
|
||||
int pystack_size = CIRCUITPY_PYSTACK_SIZE; // Use build default for now.
|
||||
mp_int_t pystack_size = CIRCUITPY_PYSTACK_SIZE; // Use build default for now.
|
||||
#if MICROPY_ENABLE_PYSTACK
|
||||
// Allocate default at least temporarily, needed for getenv
|
||||
pystack = allocate_memory(CIRCUITPY_PYSTACK_SIZE, false, false);
|
||||
|
|
Loading…
Reference in New Issue