From f8e80a286197271066b5d619cc98d03fcebf5f81 Mon Sep 17 00:00:00 2001 From: gnezdo Date: Sat, 1 May 2021 16:18:58 +0000 Subject: [PATCH] Removed unused SYSCTL_INT_UNBOUNDED (no use planned) Added a comment for SYSCTL_INT_READONLY. OK mvs@ --- sys/sys/sysctl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h index d574e2cb028..e53e7c63280 100644 --- a/sys/sys/sysctl.h +++ b/sys/sys/sysctl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sysctl.h,v 1.215 2021/04/30 13:52:48 bluhm Exp $ */ +/* $OpenBSD: sysctl.h,v 1.216 2021/05/01 16:18:58 gnezdo Exp $ */ /* $NetBSD: sysctl.h,v 1.16 1996/04/09 20:55:36 cgd Exp $ */ /* @@ -1000,7 +1000,7 @@ struct sysctl_bounded_args { int maximum; /* read-only variable if minimum > maximum */ }; -#define SYSCTL_INT_UNBOUNDED 0,0 +/* Special case minimum,maximum marker for sysctl_bounded_args. */ #define SYSCTL_INT_READONLY 1,0 /* -- 2.20.1