diff options
Diffstat (limited to 'test/testmsg.c')
-rw-r--r-- | test/testmsg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testmsg.c b/test/testmsg.c index 31959c619..5e9cba0d8 100644 --- a/test/testmsg.c +++ b/test/testmsg.c @@ -47,7 +47,7 @@ static msg_t thread(void *p) { static void msg1_execute(void) {
msg_t msg;
- threads[0] = chThdCreate(chThdGetPriority()-1, 0, wa[0], STKSIZE, thread, chThdSelf());
+ threads[0] = chThdCreate(chThdGetPriority()-1, wa[0], STKSIZE, thread, chThdSelf());
do {
chMsgRelease(msg = chMsgWait());
if (msg)
|