diff options
author | alex <alex@FreeBSD.org> | 1998-08-08 14:19:16 +0000 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 1998-08-08 14:19:16 +0000 |
commit | 6d5504d566be043a9006a02560b8ba779c67265b (patch) | |
tree | 5da0a6f89ef6b16127e4f078ba208da0e2861102 /share | |
parent | b6e912c9e473a666763a366d8bfeb6f241b567e9 (diff) | |
download | FreeBSD-src-6d5504d566be043a9006a02560b8ba779c67265b.zip FreeBSD-src-6d5504d566be043a9006a02560b8ba779c67265b.tar.gz |
Typo fix. The PR suggested that "save are for old callslot entry" should
be "slot area for old callslot entry", but I think "save area for old
callslot entry" is what was intended.
PR: 7526
Diffstat (limited to 'share')
-rw-r--r-- | share/examples/lkm/misc/module/miscmod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/examples/lkm/misc/module/miscmod.c b/share/examples/lkm/misc/module/miscmod.c index 2f59eb0..27854fc 100644 --- a/share/examples/lkm/misc/module/miscmod.c +++ b/share/examples/lkm/misc/module/miscmod.c @@ -57,7 +57,7 @@ static struct sysent newent = { /* * Miscellaneous modules must have their own save areas... */ -static struct sysent oldent; /* save are for old callslot entry*/ +static struct sysent oldent; /* save area for old callslot entry*/ /* * Number of syscall entries for a.out executables |