aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64/amd64
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2022-06-04 11:15:53 +0000
committerGordon Bergling <gbe@FreeBSD.org>2022-06-04 11:15:53 +0000
commitfaff37be462262c6ae958c93f0aa27118d4d62cf (patch)
tree2e6ad52fa3f67f9172a05215b643eed99496907f /sys/amd64/amd64
parentf77a88c855c557902e4e4c9696b08e847c413f54 (diff)
downloadsrc-faff37be462262c6ae958c93f0aa27118d4d62cf.tar.gz
src-faff37be462262c6ae958c93f0aa27118d4d62cf.zip
fpu: Fix a typo in a source code comment
- s/choise/choice/ Obtained from: NetBSD MFC after: 3 days
Diffstat (limited to 'sys/amd64/amd64')
-rw-r--r--sys/amd64/amd64/fpu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/amd64/amd64/fpu.c b/sys/amd64/amd64/fpu.c
index dedb174dbe47..e9b058f175b0 100644
--- a/sys/amd64/amd64/fpu.c
+++ b/sys/amd64/amd64/fpu.c
@@ -502,14 +502,14 @@ fpuformat(void)
return (_MC_FPFMT_XMM);
}
-/*
+/*
* The following mechanism is used to ensure that the FPE_... value
* that is passed as a trapcode to the signal handler of the user
* process does not have more than one bit set.
- *
+ *
* Multiple bits may be set if the user process modifies the control
* word while a status word bit is already set. While this is a sign
- * of bad coding, we have no choise than to narrow them down to one
+ * of bad coding, we have no choice than to narrow them down to one
* bit, since we must not send a trapcode that is not exactly one of
* the FPE_ macros.
*