From a489fc365df4d1b4f407438c2efcee428e073e49 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 2 Sep 2017 15:04:18 +0000 Subject: Fixed a lame error.... git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10542 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- testhal/STM32/multi/PAL/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testhal/STM32/multi/PAL/main.c') diff --git a/testhal/STM32/multi/PAL/main.c b/testhal/STM32/multi/PAL/main.c index 597e8274d..a5646c1b2 100644 --- a/testhal/STM32/multi/PAL/main.c +++ b/testhal/STM32/multi/PAL/main.c @@ -38,7 +38,7 @@ static THD_FUNCTION(Thread1, arg) { } #endif -#if defined(PAL_USE_WAIT) || defined(__DOXYGEN__) +#if PAL_USE_WAIT || defined(__DOXYGEN__) /* * Application entry point. @@ -83,7 +83,7 @@ int main(void) { } } -#else /* !defined(PAL_USE_WAIT) */ +#else /* !PAL_USE_WAIT */ static event_source_t button_pressed_event; static event_source_t button_released_event; @@ -150,5 +150,5 @@ int main(void) { } } } -#endif /* !defined(PAL_USE_WAIT) */ +#endif /* !PAL_USE_WAIT */ -- cgit v1.2.3