git: 5136530bc481 - stable/14 - ps: s/kern.max_pid/kern.pid_max/ in a comment

From: Brooks Davis <brooks_at_FreeBSD.org>
Date: Wed, 13 Dec 2023 23:22:51 UTC
The branch stable/14 has been updated by brooks:

URL: https://cgit.FreeBSD.org/src/commit/?id=5136530bc48106593baec841c093b551a1d3e67a

commit 5136530bc48106593baec841c093b551a1d3e67a
Author:     Brooks Davis <brooks@FreeBSD.org>
AuthorDate: 2023-11-21 22:43:14 +0000
Commit:     Brooks Davis <brooks@FreeBSD.org>
CommitDate: 2023-12-13 23:08:50 +0000

    ps: s/kern.max_pid/kern.pid_max/ in a comment
    
    Sponsored by:   DARPA
    
    (cherry picked from commit 1818f3fda9c1a9a97f23b6dc6d0a63eb6f8d8b20)
---
 bin/ps/ps.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/ps/ps.c b/bin/ps/ps.c
index 3a7a0f54cca0..16d8a0a58d3c 100644
--- a/bin/ps/ps.c
+++ b/bin/ps/ps.c
@@ -112,7 +112,7 @@ static int	 needcomm;	/* -o "command" */
 static int	 needenv;	/* -e */
 static int	 needuser;	/* -o "user" */
 static int	 optfatal;	/* Fatal error parsing some list-option. */
-static int	 pid_max;	/* kern.max_pid */
+static int	 pid_max;	/* kern.pid_max */
 
 static enum sort { DEFAULT, SORTMEM, SORTCPU } sortby = DEFAULT;