swap int for mp_int_t

This commit is contained in:
Bill Sideris 2023-02-15 16:08:22 +02:00
parent 9e2235d7f7
commit 0d5b400b33
No known key found for this signature in database
GPG Key ID: 1BEF1BCEBA58EA33
1 changed files with 1 additions and 1 deletions

2
main.c
View File

@ -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);