summaryrefslogtreecommitdiff
path: root/supervisor/shared/stack.c
diff options
context:
space:
mode:
authorLucian Copeland <hierophect@gmail.com>2020-04-13 12:03:05 -0400
committerLucian Copeland <hierophect@gmail.com>2020-04-13 12:03:05 -0400
commit5ac38c95cc914c69e56a0f646131b34826b6f59a (patch)
tree2083df3f5c661b48c94d3f30a2bdb11c02d312f3 /supervisor/shared/stack.c
parent92a0621e5956fee84591859ffa58c04be8e46158 (diff)
Various requested fixes
Diffstat (limited to 'supervisor/shared/stack.c')
-rwxr-xr-xsupervisor/shared/stack.c2
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;
}