diff options
author | kib <kib@FreeBSD.org> | 2012-05-17 10:19:49 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2012-05-17 10:19:49 +0000 |
commit | 6e55e4c37b1234d85faf78d185ca3eefc6df3a41 (patch) | |
tree | 73101257d8747850c8c6aac6cc21de4d5bf59ab3 /sys/amd64 | |
parent | 6f7c7353004e2ff9709b326a4008ce8ea63d9270 (diff) | |
download | FreeBSD-src-6e55e4c37b1234d85faf78d185ca3eefc6df3a41.zip FreeBSD-src-6e55e4c37b1234d85faf78d185ca3eefc6df3a41.tar.gz |
Fix typo.
MFC after: 3 days
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/amd64/fpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/amd64/fpu.c b/sys/amd64/amd64/fpu.c index 27c618f..47c6f07 100644 --- a/sys/amd64/amd64/fpu.c +++ b/sys/amd64/amd64/fpu.c @@ -141,7 +141,7 @@ CTASSERT(sizeof(struct savefpu_ymm) == 832); /* * This requirement is to make it easier for asm code to calculate * offset of the fpu save area from the pcb address. FPU save area - * must by 64-bytes aligned. + * must be 64-bytes aligned. */ CTASSERT(sizeof(struct pcb) % XSAVE_AREA_ALIGN == 0); |