aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-11-10 08:06:03 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-11-10 08:06:03 +0000
commitc0664e0d08f342623207e4d22606bf2e5f9bd5d6 (patch)
treec384b187c1bcc24647436c1a3f44f22e3168e593 /test
parent7390fbb842e3120f6339da5734863d927399a722 (diff)
downloadChibiOS-c0664e0d08f342623207e4d22606bf2e5f9bd5d6.tar.gz
ChibiOS-c0664e0d08f342623207e4d22606bf2e5f9bd5d6.tar.bz2
ChibiOS-c0664e0d08f342623207e4d22606bf2e5f9bd5d6.zip
Fixed bug 3585979.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4804 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test')
-rw-r--r--test/testmbox.c2
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++) {