diff options
author | eadler <eadler@FreeBSD.org> | 2018-03-05 06:59:30 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2018-03-05 06:59:30 +0000 |
commit | a03b84a5a391a1d6f60842fcf412a26328b53a6b (patch) | |
tree | 2e3d1e48bbd6bfce09b0a74f9b2eb03a21ef77aa /sys/amd64 | |
parent | 804a8b0a21d8d6b8e287fade30e1e346076ddaeb (diff) | |
download | FreeBSD-src-a03b84a5a391a1d6f60842fcf412a26328b53a6b.zip FreeBSD-src-a03b84a5a391a1d6f60842fcf412a26328b53a6b.tar.gz |
MFC r327231,r327232:
kernel: Fix several typos and minor errors
lib: Fix several typos and minor errors
- duplicate words
- typos
- references to old versions of FreeBSD
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/amd64/support.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/amd64/support.S b/sys/amd64/amd64/support.S index aed23d6..1a115d8 100644 --- a/sys/amd64/amd64/support.S +++ b/sys/amd64/amd64/support.S @@ -565,7 +565,7 @@ END(subyte) * copyinstr(from, to, maxlen, int *lencopied) * %rdi, %rsi, %rdx, %rcx * - * copy a string from from to to, stop when a 0 character is reached. + * copy a string from 'from' to 'to', stop when a 0 character is reached. * return ENAMETOOLONG if string is longer than maxlen, and * EFAULT on protection violations. If lencopied is non-zero, * return the actual length in *lencopied. |