From 21de5e7b2e55d98aab9750abac6f70243fd1b61d Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 7 Nov 2021 17:02:46 +0200 Subject: [PATCH] Fix compilation MinGW warnings * src/w32.h (prepare_standard_handles, reset_standard_handles): Fix prototypes. Reported by Andy Moreton in https://lists.gnu.org/archive/html/emacs-devel/2021-11/msg00597.html. --- src/w32.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/w32.h b/src/w32.h index ffa145b1484..5aba0aed9a6 100644 --- a/src/w32.h +++ b/src/w32.h @@ -155,11 +155,11 @@ extern unsigned int w32_get_short_filename (const char *, char *, int); /* Prepare our standard handles for proper inheritance by child processes. */ extern void prepare_standard_handles (int in, int out, - int err, HANDLE handles[4]); + int err, HANDLE handles[3]); /* Reset our standard handles to their original state. */ extern void reset_standard_handles (int in, int out, - int err, HANDLE handles[4]); + int err, HANDLE handles[3]); /* Return the string resource associated with KEY of type TYPE. */ extern LPBYTE w32_get_resource (const char * key, LPDWORD type); -- 2.39.5