From 491df31fd08a44605888223b466b937557351a49 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 10 Nov 2012 08:06:11 +0000 Subject: [PATCH] Fixed bug 3585979. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.4.x@4805 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- readme.txt | 1 + test/testmbox.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index ef56fe1fa..931482e7c 100644 --- a/readme.txt +++ b/readme.txt @@ -79,6 +79,7 @@ ***************************************************************************** *** 2.4.3 *** +- FIX: Fixed missing ; in testmbox.c (bug 3585979). - FIX: Fixed STM32_P407: implement mmc_lld_is_card_inserted (bug 3581929). - FIX: Fixed double chSysInit() call in MSP430F1611 demo (bug 3581304). - FIX: Fixed bug in abstract file interface (bug 3579660). diff --git a/test/testmbox.c b/test/testmbox.c index 0146f0a2c..ca5880e23 100644 --- a/test/testmbox.c +++ b/test/testmbox.c @@ -176,7 +176,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++) {