sys: Fix typo (triple S)

Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/955
This commit is contained in:
Jose Luis Duran 2023-12-27 20:17:17 -07:00 committed by Warner Losh
parent c43829a757
commit 9c5f4c4f95

View file

@ -213,7 +213,7 @@ SYSINIT(name, SI_SUB_LAST, SI_ORDER_MIDDLE, name ## _add_proc, NULL);
SCHED_STAT_DEFINE_VAR(name, &DPCPU_NAME(name), descr)
/*
* Sched stats are always incremented in critical sections so no atomic
* is necesssary to increment them.
* is necessary to increment them.
*/
#define SCHED_STAT_INC(var) DPCPU_GET(var)++;
#else