Revert "ffs(3): Fix a typo in a sysctl description"

It should be

- s/contigous/contiguous/ not continuous

Reported by:	tuexen@

This reverts commit 42efe994ec.
This commit is contained in:
Gordon Bergling 2021-12-05 13:45:47 +01:00
parent e86b5a6234
commit f9af3151fa

View File

@ -501,7 +501,7 @@ SYSCTL_INT(_vfs_ffs, OID_AUTO, dotrimcons, CTLFLAG_RWTUN, &dotrimcons, 0,
static int maxclustersearch = 10;
SYSCTL_INT(_vfs_ffs, OID_AUTO, maxclustersearch, CTLFLAG_RW, &maxclustersearch,
0, "max number of cylinder group to search for continuous blocks");
0, "max number of cylinder group to search for contigous blocks");
#ifdef DIAGNOSTIC
static int prtrealloc = 0;