Date: Sun, 15 Aug 2021 05:56:20 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 64085efb677f - stable/13 - hms(4): Fix a typo in sysctl description Message-ID: <202108150556.17F5uKqj090789@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=64085efb677fbfcf76235a1a9dcb497819e2b72f commit 64085efb677fbfcf76235a1a9dcb497819e2b72f Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2021-08-12 13:37:47 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2021-08-15 05:56:02 +0000 hms(4): Fix a typo in sysctl description - s/threshhold/threshold/ (cherry picked from commit 4b4850aefe3ff9d9c29c7ed8bd8907bbd6142e86) --- sys/dev/hid/hms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/hid/hms.c b/sys/dev/hid/hms.c index 94267b3fcd52..014354c3acc3 100644 --- a/sys/dev/hid/hms.c +++ b/sys/dev/hid/hms.c @@ -271,7 +271,7 @@ hms_attach(device_t dev) SYSCTL_ADD_U32(device_get_sysctl_ctx(dev), SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, "drift_thresh", CTLFLAG_RW, &sc->drift_thresh, 0, - "drift detection threshhold"); + "drift detection threshold"); } #endif
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202108150556.17F5uKqj090789>