1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-12 09:58:36 +00:00

Fix spelling of integer in a comment.

Beady eyes:	ceri
This commit is contained in:
Robert Watson 2005-01-30 00:31:19 +00:00
parent 56c2262c0e
commit 78bb1895ab
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=141013

View File

@ -252,7 +252,7 @@ sysctl_kern_securelvl(SYSCTL_HANDLER_ARGS)
/*
* If the process is in jail, return the maximum of the global and
* local levels; otherwise, return the global level. Perform a
* lockless read since the securelevel is an interger.
* lockless read since the securelevel is an integer.
*/
if (pr != NULL)
level = imax(securelevel, pr->pr_securelevel);