git: 1510db242a9a - stable/12 - bluetooth(3): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 03 Aug 2022 04:12:17 UTC
The branch stable/12 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=1510db242a9a72a367c038cf02d13fd59c33dde6 commit 1510db242a9a72a367c038cf02d13fd59c33dde6 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-07-31 10:13:13 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-08-03 04:12:06 +0000 bluetooth(3): Fix a typo in a source code comment - s/intrrupt/interrupt/ (cherry picked from commit e24fd6d664091dbdf35e5fa77f276613b2e21691) --- usr.sbin/bluetooth/bthidd/server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bluetooth/bthidd/server.c b/usr.sbin/bluetooth/bthidd/server.c index 33915307db0e..59b4bafc6a06 100644 --- a/usr.sbin/bluetooth/bthidd/server.c +++ b/usr.sbin/bluetooth/bthidd/server.c @@ -114,7 +114,7 @@ server_init(bthid_server_p srv) return (-1); } - /* Create intrrupt socket */ + /* Create interrupt socket */ srv->intr = socket(PF_BLUETOOTH, SOCK_SEQPACKET, BLUETOOTH_PROTO_L2CAP); if (srv->intr < 0) { syslog(LOG_ERR, "Could not create interrupt L2CAP socket. " \