mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix obvious problem with emulate_fp sysctl.
Submitted by: Paul Ambrose <ambrosehua@gmail.com>
This commit is contained in:
parent
65211d02c4
commit
b7e39c683a
1 changed files with 1 additions and 1 deletions
|
|
@ -302,7 +302,7 @@ static int emulate_fp = 1;
|
|||
static int emulate_fp = 0;
|
||||
#endif
|
||||
SYSCTL_INT(_machdep, OID_AUTO, emulate_fp, CTLFLAG_RW,
|
||||
&allow_unaligned_acc, 0, "Emulate unimplemented FPU instructions");
|
||||
&emulate_fp, 0, "Emulate unimplemented FPU instructions");
|
||||
|
||||
static int emulate_unaligned_access(struct trapframe *frame, int mode);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue