aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2002-06-06 20:29:39 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2002-06-06 20:29:39 +0000
commit3d0d5dccc1789c53e2a800417e1a9c160e89d6c1 (patch)
tree0ae812c2fc0bd427e8ba45de5b0352b4a177b0c4 /bin
parent033340171accba5dc74bdef5061ba2dea0df5a3e (diff)
Notes
Diffstat (limited to 'bin')
-rw-r--r--bin/ps/fmt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ps/fmt.c b/bin/ps/fmt.c
index 92638869227d..3703ace22c6e 100644
--- a/bin/ps/fmt.c
+++ b/bin/ps/fmt.c
@@ -70,7 +70,8 @@ shquote(char **argv)
if (buf == NULL) {
if ((arg_max = sysconf(_SC_ARG_MAX)) == -1)
errx(1, "sysconf _SC_ARG_MAX failed");
- if (arg_max >= LONG_MAX / 4 || 4 * arg_max + 1 > SIZE_MAX)
+ if (arg_max >= LONG_MAX / 4 ||
+ 4 * (size_t)arg_max + 1 > SIZE_MAX)
errx(1, "sysconf _SC_ARG_MAX preposterously large");
buf_size = 4 * arg_max + 1;
if ((buf = malloc(buf_size)) == NULL)