Mercurial > nand-ecoscentric
changeset 3309:79d84ff0523d
Fix missing semicolon. Bug spotted and patch provided by John Dallaway. [ Bugzilla 1001835 ]
| author | vae |
|---|---|
| date | Fri, 26 Apr 2013 20:59:48 +0000 |
| parents | 1a05365e93b4 |
| children | 0e33931a6b39 |
| files | packages/kernel/current/ChangeLog packages/kernel/current/tests/fpint_thread_switch.cxx |
| diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/packages/kernel/current/ChangeLog +++ b/packages/kernel/current/ChangeLog @@ -1,3 +1,8 @@ +2013-04-26 Ilija Kocho <ilijak@siva.com.mk> + + * tests/fpint_thread_switch.c: Fix missing semicolon. + Bug spotted and patch provided by John Dallaway. [ Bugzilla 1001835 ] + 2013-02-10 Ilija Kocho <ilijak@siva.com.mk> Jonathan Larmour <jifl@eCosCentric.com>
--- 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
