diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/testmbox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testmbox.c b/test/testmbox.c index 9c0bc08fa..5d3b7f153 100644 --- a/test/testmbox.c +++ b/test/testmbox.c @@ -169,7 +169,7 @@ static void mbox1_execute(void) { msg1 = chMBPostI(&mb1, 'D');
test_assert(25, msg1 == RDY_OK, "wrong wake-up message");
msg1 = chMBPostI(&mb1, 'E');
- chSysUnlock()
+ chSysUnlock();
test_assert(26, msg1 == RDY_OK, "wrong wake-up message");
test_assert(27, mb1.mb_rdptr == mb1.mb_wrptr, "pointers not aligned");
for (i = 0; i < MB_SIZE; i++) {
|