diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-22 11:05:26 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-22 11:05:26 +0000 |
commit | 1ffcc1b527ea652dfc067e13e90b0ab728ece3e7 (patch) | |
tree | 28ff64f03d2d9619b0a01d6a626103398ccdc65f /demos | |
parent | 4e51e4aadb58c2e6f06d2373c8e011be94cf16c5 (diff) | |
download | ChibiOS-1ffcc1b527ea652dfc067e13e90b0ab728ece3e7.tar.gz ChibiOS-1ffcc1b527ea652dfc067e13e90b0ab728ece3e7.tar.bz2 ChibiOS-1ffcc1b527ea652dfc067e13e90b0ab728ece3e7.zip |
Workaround for GCC7 fallthrough bug.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11161 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos')
-rw-r--r-- | demos/STM32/RT-STM32F746G-DISCOVERY/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/STM32/RT-STM32F746G-DISCOVERY/main.c b/demos/STM32/RT-STM32F746G-DISCOVERY/main.c index c54cfc578..5f257e98b 100644 --- a/demos/STM32/RT-STM32F746G-DISCOVERY/main.c +++ b/demos/STM32/RT-STM32F746G-DISCOVERY/main.c @@ -48,7 +48,7 @@ int main(void) { * - Kernel initialization, the main() function becomes a thread and the
* RTOS is active.
*/
- halInit();
+ halInit();
chSysInit();
/*
|