mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 12:51:07 -05:00
The previous revision introduced a compilation error, i.e., the use of an
undefined variable. Correct this error.
This commit is contained in:
parent
2c61418d05
commit
fb7ed0f9cc
1 changed files with 1 additions and 1 deletions
|
|
@ -436,7 +436,7 @@ alpha_dispatch_intr(void *frame, unsigned long vector)
|
|||
critical_enter();
|
||||
ih->ih_handler(ih->ih_argument);
|
||||
/* XXX */
|
||||
td->td_pflags &= ~TDP_OWEPREEMPT;
|
||||
curthread->td_pflags &= ~TDP_OWEPREEMPT;
|
||||
critical_exit();
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue