mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #237 from neilt6/master
Add newline character to stack allocation errorpull/238/head
commit
3dd4af0833
|
@ -37,7 +37,7 @@ Thread::Thread(void (*task)(void const *argument), void *argument,
|
||||||
} else {
|
} else {
|
||||||
_thread_def.stack_pointer = new unsigned char[stack_size];
|
_thread_def.stack_pointer = new unsigned char[stack_size];
|
||||||
if (_thread_def.stack_pointer == NULL)
|
if (_thread_def.stack_pointer == NULL)
|
||||||
error("Error allocating the stack memory");
|
error("Error allocating the stack memory\n");
|
||||||
_dynamic_stack = true;
|
_dynamic_stack = true;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue