From 2d1303763e6650416a636ca16a0e9ab7529106cd Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Sun, 27 Oct 2013 08:13:27 +0100 Subject: [PATCH] fix spelling in msg.c --- core/msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/msg.c b/core/msg.c index 9ae2b9adf4..09fd56f4a7 100644 --- a/core/msg.c +++ b/core/msg.c @@ -250,11 +250,11 @@ static int _msg_receive(msg_t *m, int block) return 1; } else { - DEBUG("%s: msg_receive(): Wakeing up waiting thread.\n", active_thread->name); + DEBUG("%s: msg_receive(): Waking up waiting thread.\n", active_thread->name); tcb_t *sender = (tcb_t*) node->data; if (n >= 0) { - /* we've already got a messgage from the queue. as there is a + /* We've already got a message from the queue. As there is a * waiter, take it's message into the just freed queue space. */ m = &(me->msg_array[cib_put(&(me->msg_queue))]);