# HG changeset patch # User vae # Date 1367009988 0 # Node ID 79d84ff0523d3b6e31247cb83d0906d2ef52174b # Parent 1a05365e93b43460bbe2833e6dbabc562150f425 Fix missing semicolon. Bug spotted and patch provided by John Dallaway. [ Bugzilla 1001835 ] diff --git a/packages/kernel/current/ChangeLog b/packages/kernel/current/ChangeLog --- a/packages/kernel/current/ChangeLog +++ b/packages/kernel/current/ChangeLog @@ -1,3 +1,8 @@ +2013-04-26 Ilija Kocho + + * tests/fpint_thread_switch.c: Fix missing semicolon. + Bug spotted and patch provided by John Dallaway. [ Bugzilla 1001835 ] + 2013-02-10 Ilija Kocho Jonathan Larmour diff --git a/packages/kernel/current/tests/fpint_thread_switch.cxx b/packages/kernel/current/tests/fpint_thread_switch.cxx --- a/packages/kernel/current/tests/fpint_thread_switch.cxx +++ b/packages/kernel/current/tests/fpint_thread_switch.cxx @@ -70,7 +70,7 @@ #ifndef HAL_CLOCK_READ_NS #define HAL_CLOCK_READ_NS(__pvalue) \ CYG_MACRO_START \ - HAL_CLOCK_READ(__pvalue) \ + HAL_CLOCK_READ(__pvalue); \ *__pvalue *= 1000; \ CYG_MACRO_END #endif