fix spelling in msg.c

This commit is contained in:
Ludwig Ortmann 2013-10-27 08:13:27 +01:00
parent 6ebe1bfdc7
commit 2d1303763e

View File

@ -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))]);