diff options
| author | Lucian Copeland <hierophect@gmail.com> | 2020-04-13 12:03:05 -0400 |
|---|---|---|
| committer | Lucian Copeland <hierophect@gmail.com> | 2020-04-13 12:03:05 -0400 |
| commit | 5ac38c95cc914c69e56a0f646131b34826b6f59a (patch) | |
| tree | 2083df3f5c661b48c94d3f30a2bdb11c02d312f3 /supervisor/shared/stack.c | |
| parent | 92a0621e5956fee84591859ffa58c04be8e46158 (diff) | |
Various requested fixes
Diffstat (limited to 'supervisor/shared/stack.c')
| -rwxr-xr-x | supervisor/shared/stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/supervisor/shared/stack.c b/supervisor/shared/stack.c index 2a7daf465..2b7b1c03a 100755 --- a/supervisor/shared/stack.c +++ b/supervisor/shared/stack.c @@ -46,7 +46,7 @@ void allocate_stack(void) { mp_uint_t c_size = (uint32_t) port_stack_get_top() - sp; - if (port_stack_get_top() != port_heap_get_top()) { //Why is this here? Doesn't apply to some chips. + if (port_stack_get_top() != port_heap_get_top()) { return; } |
