diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2009-05-23 10:04:49 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-05-23 01:54:45 -0700 |
commit | 27e3219f1a78d2d7035565aa7ace882dbc2baa97 (patch) | |
tree | 06d32aef5e1c020afd81782c5d54a475153565e6 /compat/mingw.h | |
parent | 352c81114ca436b9e06255f24bf8a7d2fd0a4029 (diff) | |
download | git-27e3219f1a78d2d7035565aa7ace882dbc2baa97.tar.gz git-27e3219f1a78d2d7035565aa7ace882dbc2baa97.tar.xz |
MinGW: use POSIX signature of waitpid()
Git's source code expects waitpid() to return a signed int status.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Steffen Prohaska <prohaska@zib.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat/mingw.h')
-rw-r--r-- | compat/mingw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/mingw.h b/compat/mingw.h index 762eb143a..b1156b865 100644 --- a/compat/mingw.h +++ b/compat/mingw.h @@ -109,7 +109,7 @@ static inline int mingw_unlink(const char *pathname) } #define unlink mingw_unlink -static inline int waitpid(pid_t pid, unsigned *status, unsigned options) +static inline int waitpid(pid_t pid, int *status, unsigned options) { if (options == 0) return _cwait(status, pid, 0); |