From e66a9d0570d2f0eb6e1b16b423dc9d07a04eecd4 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 28 Sep 2022 14:04:08 -0700 Subject: [PATCH] sh: Fix mismatch in array bounds for vforkexecshell(). Reviewed by: imp, jilles, emaste Reported by: GCC -Warray-parameter Differential Revision: https://reviews.freebsd.org/D36760 (cherry picked from commit 10297a9ed488a9fff159ae495b61185e6f50e22a) --- bin/sh/jobs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h index d0caf063861..411d08f27a6 100644 --- a/bin/sh/jobs.h +++ b/bin/sh/jobs.h @@ -55,7 +55,7 @@ void setjobctl(int); void showjobs(int, int); struct job *makejob(union node *, int); pid_t forkshell(struct job *, union node *, int); -pid_t vforkexecshell(struct job *, char **, char **, const char *, int, int []); +pid_t vforkexecshell(struct job *, char **, char **, const char *, int, int [2]); int waitforjob(struct job *, int *); int stoppedjobs(void); int backgndpidset(void);