aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports
diff options
context:
space:
mode:
Diffstat (limited to 'os/hal/ports')
-rwxr-xr-xos/hal/ports/simulator/posix/hal_lld.c2
-rw-r--r--os/hal/ports/simulator/win32/hal_lld.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/ports/simulator/posix/hal_lld.c b/os/hal/ports/simulator/posix/hal_lld.c
index 449fd8e98..0015f5b24 100755
--- a/os/hal/ports/simulator/posix/hal_lld.c
+++ b/os/hal/ports/simulator/posix/hal_lld.c
@@ -74,7 +74,7 @@ void _sim_check_for_interrupts(void) {
#if HAL_USE_SERIAL
if (sd_lld_interrupt_pending()) {
- int_occured = true;
+ int_occurred = true;
}
#endif
diff --git a/os/hal/ports/simulator/win32/hal_lld.c b/os/hal/ports/simulator/win32/hal_lld.c
index e00aab428..6a0220b91 100644
--- a/os/hal/ports/simulator/win32/hal_lld.c
+++ b/os/hal/ports/simulator/win32/hal_lld.c
@@ -87,7 +87,7 @@ void _sim_check_for_interrupts(void) {
/* Interrupt Timer simulation (10ms interval).*/
QueryPerformanceCounter(&n);
if (n.QuadPart > nextcnt.QuadPart) {
- int_occured = true;
+ int_occurred = true;
nextcnt.QuadPart += slice.QuadPart;
CH_IRQ_PROLOGUE();