diff options
Diffstat (limited to 'os/hal/platforms/Win32/hal_lld.c')
-rw-r--r-- | os/hal/platforms/Win32/hal_lld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/platforms/Win32/hal_lld.c b/os/hal/platforms/Win32/hal_lld.c index 5906e372c..48d017f2f 100644 --- a/os/hal/platforms/Win32/hal_lld.c +++ b/os/hal/platforms/Win32/hal_lld.c @@ -89,7 +89,7 @@ void ChkIntSources(void) { }
#endif
- // Interrupt Timer simulation (10ms interval).
+ /* Interrupt Timer simulation (10ms interval).*/
QueryPerformanceCounter(&n);
if (n.QuadPart > nextcnt.QuadPart) {
nextcnt.QuadPart += slice.QuadPart;
|