diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-04-18 04:19:50 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-04-18 04:19:50 +0000 |
commit | 7f641159ef72504d54dd79c71d7127af41dff2ce (patch) | |
tree | 10df3372fdd441d12ab43bec7596d0db25693da2 /sys/arch/i386 | |
parent | e9a486f3021dfe9cf8024208416d91f0ad634f7c (diff) |
Fix a typo (get_vflag[s]).
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index fca5eac7d6c..0013f07539b 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.10 1996/04/18 04:04:57 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.11 1996/04/18 04:19:49 mickey Exp $ */ /* $NetBSD: machdep.c,v 1.191 1996/03/01 21:49:49 scottr Exp $ */ /*- @@ -563,7 +563,7 @@ sendsig(catcher, sig, mask, code) frame.sf_sc.sc_fs = tf->tf_vm86_fs; frame.sf_sc.sc_es = tf->tf_vm86_es; frame.sf_sc.sc_ds = tf->tf_vm86_ds; - frame.sf_sc.sc_eflags = get_vflag(p); + frame.sf_sc.sc_eflags = get_vflags(p); tf->tf_eflags &= ~PSL_VM; } else #endif |