Skip to content

Commit

Permalink
Fix __init_wut_sbrk_heap.
Browse files Browse the repository at this point in the history
  • Loading branch information
exjam committed Jun 15, 2018
1 parent 08fdf44 commit f9799cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/wutnewlib/wut_sbrk.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ __init_wut_sbrk_heap()
return;
}

if (__wut_heap_max_size) {
if (&__wut_heap_max_size) {
// Use default heap
sHeapBase = MEMAllocFromDefaultHeap(__wut_heap_max_size);
sHeapMaxSize = __wut_heap_max_size;
Expand Down

0 comments on commit f9799cf

Please sign in to comment.