mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
[HALX86] Fix a Clang-Cl warning about KiUnexpectedInterrupt
"warning: cast between incompatible calling conventions 'cdecl' and 'fastcall'; calls through this pointer may abort at runtime [-Wcast-calling-convention]" CORE-14306
This commit is contained in:
parent
1668527acf
commit
e01f935f0e
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ PHAL_SW_INTERRUPT_HANDLER SWInterruptHandlerTable[20] =
|
|||
/* Handlers for pending software interrupts when we already have a trap frame*/
|
||||
PHAL_SW_INTERRUPT_HANDLER_2ND_ENTRY SWInterruptHandlerTable2[3] =
|
||||
{
|
||||
(PHAL_SW_INTERRUPT_HANDLER_2ND_ENTRY)KiUnexpectedInterrupt,
|
||||
(PHAL_SW_INTERRUPT_HANDLER_2ND_ENTRY)(PVOID)KiUnexpectedInterrupt,
|
||||
HalpApcInterrupt2ndEntry,
|
||||
HalpDispatchInterrupt2ndEntry
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue