From 6064af0434228ba0a907552bbd085885969d0da5 Mon Sep 17 00:00:00 2001 From: jeromecoutant Date: Tue, 17 Jul 2018 14:28:30 +0200 Subject: [PATCH] Systimer test : compilation error with MBED_TICKLESS Issue occurs when "MBED_TICKLESS" is added in mbed_app.json, not when "MBED_TICKLESS" is added in targets.json --- TESTS/mbedmicro-rtos-mbed/systimer/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TESTS/mbedmicro-rtos-mbed/systimer/main.cpp b/TESTS/mbedmicro-rtos-mbed/systimer/main.cpp index 4f688799ba..e1e474d6d4 100644 --- a/TESTS/mbedmicro-rtos-mbed/systimer/main.cpp +++ b/TESTS/mbedmicro-rtos-mbed/systimer/main.cpp @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#if !MBED_TICKLESS +#ifndef MBED_TICKLESS #error [NOT_SUPPORTED] Tickless mode not supported for this target. #endif