From 2d37b9667e60ae1270304f660cb7c7883626255e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 15 Sep 2020 18:06:48 +0200 Subject: sys/openbsd: fix linter warnings sys/openbsd/init.go:58:36: Top level comment should end in a period // kCoverFd in executor/executor.cc ^ sys/openbsd/init.go:60:38: Top level comment should end in a period // kOutPipeFd in executor/executor.cc ^ --- sys/openbsd/init.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/openbsd') diff --git a/sys/openbsd/init.go b/sys/openbsd/init.go index c7e624090..c72a80931 100644 --- a/sys/openbsd/init.go +++ b/sys/openbsd/init.go @@ -55,9 +55,9 @@ const ( devFdMajor = 22 devNullDevT = 0x0202 - // kCoverFd in executor/executor.cc + // kCoverFd in executor/executor.cc. kcovFdMinorMin = 232 - // kOutPipeFd in executor/executor.cc + // kOutPipeFd in executor/executor.cc. kcovFdMinorMax = 248 // Mask covering all valid rlimit resources. -- cgit mrf-deployment