1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-25 06:22:11 +03:00

Fix continuations

This commit is contained in:
Ivan Grokhotkov
2014-11-21 12:15:03 +03:00
parent 705928fdee
commit 09e27637dc
2 changed files with 7 additions and 5 deletions

View File

@ -36,7 +36,7 @@ void cont_init(cont_t* cont)
cont->stack_guard1 = CONT_STACKGUARD;
cont->stack_guard2 = CONT_STACKGUARD;
cont->stack_end = cont->stack + (sizeof(cont->stack) / 4 - 1);
cont->struct_start = cont;
cont->struct_start = (unsigned*) cont;
}
int cont_check(cont_t* cont)