From 7b91ea9349c090739f36b3885fab6f697046871b Mon Sep 17 00:00:00 2001 From: Christian Mehlis <mehlis@inf.fu-berlin.de> Date: Fri, 18 Apr 2014 12:11:05 +0200 Subject: [PATCH] core: fix warning about discarding volatile --- core/msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/msg.c b/core/msg.c index c22fd66188..0fd4965e3e 100644 --- a/core/msg.c +++ b/core/msg.c @@ -133,7 +133,7 @@ int msg_send_to_self(msg_t *m) { unsigned int state = disableIRQ(); - int res = queue_msg(active_thread, m); + int res = queue_msg((tcb_t *) active_thread, m); restoreIRQ(state); return res; -- GitLab