From b16e783aaed6f30f1e276d68bcebc0cac7ed644a Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Sat, 17 Mar 2018 21:44:30 +0000 Subject: Typo. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11804 110e8d01-0319-4d1e-a829-52ad28d1bb01 --- os/hal/ports/simulator/posix/hal_lld.c | 2 +- os/hal/ports/simulator/win32/hal_lld.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'os/hal/ports/simulator') 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(); -- cgit v1.2.3