git: 1818f3fda9c1 - main - ps: s/kern.max_pid/kern.pid_max/ in a comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 21 Nov 2023 22:48:26 UTC
The branch main has been updated by brooks: URL: https://cgit.FreeBSD.org/src/commit/?id=1818f3fda9c1a9a97f23b6dc6d0a63eb6f8d8b20 commit 1818f3fda9c1a9a97f23b6dc6d0a63eb6f8d8b20 Author: Brooks Davis <brooks@FreeBSD.org> AuthorDate: 2023-11-21 22:43:14 +0000 Commit: Brooks Davis <brooks@FreeBSD.org> CommitDate: 2023-11-21 22:46:01 +0000 ps: s/kern.max_pid/kern.pid_max/ in a comment Sponsored by: DARPA --- 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;