1
0
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:
Joakim Nohlgård 2021-03-23 09:45:03 +01:00
parent 783c407787
commit 87727febd7

View File

@ -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;
}