diff options
Diffstat (limited to 'demos/Win32-MinGW/chcore.c')
-rw-r--r-- | demos/Win32-MinGW/chcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/Win32-MinGW/chcore.c b/demos/Win32-MinGW/chcore.c index eab41ab27..866ac791e 100644 --- a/demos/Win32-MinGW/chcore.c +++ b/demos/Win32-MinGW/chcore.c @@ -85,7 +85,7 @@ void ChkIntSources(void) { QueryPerformanceCounter(&n);
if (n.QuadPart > nextcnt.QuadPart) {
nextcnt.QuadPart += slice.QuadPart;
- chSchTimerHandlerI();
+ chSysTimerHandlerI();
if (chSchRescRequiredI())
chSchDoRescheduleI();
}
|