mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Fix i386 apic support merge botch. sizeof(long) is 8, not 4. This fixes
the annoying 'sysctl: hw.intrcnt: out of memory' error message in systat. Approved by: re (rwatson)
This commit is contained in:
parent
cd1f3db9ba
commit
4c7452eb27
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@
|
|||
ALIGN_DATA
|
||||
.globl intrcnt, eintrcnt
|
||||
intrcnt:
|
||||
.space INTRCNT_COUNT * 4
|
||||
.space INTRCNT_COUNT * 8
|
||||
eintrcnt:
|
||||
|
||||
.globl intrnames, eintrnames
|
||||
|
|
|
|||
Loading…
Reference in a new issue