mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
core/msg: Fix mismatched printf bool format
_Bool will be extended to int when calling the variadic printf function.
This commit is contained in:
parent
783c407787
commit
87727febd7
@ -127,7 +127,7 @@ static int _msg_send(msg_t *m, kernel_pid_t target_pid, bool block,
|
||||
|
||||
if (!block) {
|
||||
DEBUG("msg_send: %" PRIkernel_pid ": Receiver not waiting, "
|
||||
"block=%u\n", me->pid, block);
|
||||
"block=%d\n", me->pid, block);
|
||||
irq_restore(state);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user