aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/src
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-04-26 12:42:56 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-04-26 12:42:56 +0000
commitc4a01fccefa5105067b4f8c05709c4ccf4734310 (patch)
tree18c68c88d3ef92d06aaf5455c6834c999beadcd7 /os/kernel/src
parent6853fa7a76003d40ea7e8ef2575cbdd7a9f21754 (diff)
downloadChibiOS-c4a01fccefa5105067b4f8c05709c4ccf4734310.tar.gz
ChibiOS-c4a01fccefa5105067b4f8c05709c4ccf4734310.tar.bz2
ChibiOS-c4a01fccefa5105067b4f8c05709c4ccf4734310.zip
Fixed bug #404.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5629 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/src')
-rw-r--r--os/kernel/src/chthreads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/kernel/src/chthreads.c b/os/kernel/src/chthreads.c
index 8a9fe11b6..9f6973c90 100644
--- a/os/kernel/src/chthreads.c
+++ b/os/kernel/src/chthreads.c
@@ -149,7 +149,7 @@ void _thread_memfill(uint8_t *startp, uint8_t *endp, uint8_t v) {
*/
Thread *chThdCreateI(void *wsp, size_t size,
tprio_t prio, tfunc_t pf, void *arg) {
- /* Thread structure is layed out in the lower part of the thread workspace.*/
+ /* Thread structure is laid out in the lower part of the thread workspace.*/
Thread *tp = wsp;
chDbgCheckClassI();