From af542058eea6df931d482fa2ac34cf72202ff3d2 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Mon, 2 Dec 2013 16:38:39 +0100 Subject: [PATCH] core: msg: whitespace fixes --- core/msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/msg.c b/core/msg.c index eb86e21363..4b141d21a3 100644 --- a/core/msg.c +++ b/core/msg.c @@ -67,7 +67,7 @@ int msg_send(msg_t *m, unsigned int target_pid, bool block) dINT(); - if (target->status != STATUS_RECEIVE_BLOCKED) { + if (target->status != STATUS_RECEIVE_BLOCKED) { if (target->msg_array && queue_msg(target, m)) { eINT(); return 1; @@ -121,7 +121,7 @@ int msg_send_int(msg_t *m, unsigned int target_pid) { tcb_t *target = (tcb_t *) sched_threads[target_pid]; - if (target->status == STATUS_RECEIVE_BLOCKED) { + if (target->status == STATUS_RECEIVE_BLOCKED) { DEBUG("msg_send_int: Direct msg copy from %i to %i.\n", thread_getpid(), target_pid); m->sender_pid = target_pid;