aboutsummaryrefslogtreecommitdiff
path: root/compat/poll
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2016-01-15 14:24:34 +0100
committerJunio C Hamano <gitster@pobox.com>2016-01-15 14:01:52 -0800
commit7c00bc39eb39a26a9ad33de6e4a03fff45e86f5e (patch)
tree0ce5e3f9579a4dc1e3dcc32f48f61e36c35489c5 /compat/poll
parent59de49f80d8f6067f19496750cc79632b2959ad9 (diff)
downloadgit-7c00bc39eb39a26a9ad33de6e4a03fff45e86f5e.tar.gz
git-7c00bc39eb39a26a9ad33de6e4a03fff45e86f5e.tar.xz
mingw: avoid warnings when casting HANDLEs to int
HANDLE is defined internally as a void *, but in many cases it is actually guaranteed to be a 32-bit integer. In these cases, GCC should not warn about a cast of a pointer to an integer of a different type because we know exactly what we are doing. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat/poll')
-rw-r--r--compat/poll/poll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/poll/poll.c b/compat/poll/poll.c
index db4e03ed7..b10adc780 100644
--- a/compat/poll/poll.c
+++ b/compat/poll/poll.c
@@ -76,7 +76,7 @@
#ifdef WIN32_NATIVE
-#define IsConsoleHandle(h) (((long) (h) & 3) == 3)
+#define IsConsoleHandle(h) (((long) (intptr_t) (h) & 3) == 3)
static BOOL
IsSocketHandle (HANDLE h)