aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2013-08-16 04:08:11 +0000
committerLRN <lrn1986@gmail.com>2013-08-16 04:08:11 +0000
commit97be3496f58818aba53e64ab78877341bf4ce7e8 (patch)
treec7983f490ca39054c41ed869be699393c81f55ee
parent24a7f0787b2e5a1714b575695bfdf24344cf62d8 (diff)
downloadgnunet-97be3496f58818aba53e64ab78877341bf4ce7e8.tar.gz
gnunet-97be3496f58818aba53e64ab78877341bf4ce7e8.zip
Try to fix a warning
-rw-r--r--src/util/w32cat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/w32cat.c b/src/util/w32cat.c
index b9b783ad7..7e1d6cc4b 100644
--- a/src/util/w32cat.c
+++ b/src/util/w32cat.c
@@ -57,7 +57,7 @@ install_parent_control_handler ()
57 if ((0 != errno) || (env_buf == env_buf_end)) 57 if ((0 != errno) || (env_buf == env_buf_end))
58 return; 58 return;
59 /* Gcc will issue a warning here. What to do with it? */ 59 /* Gcc will issue a warning here. What to do with it? */
60 pipe_handle = (HANDLE) pipe_fd; 60 pipe_handle = (HANDLE) (uintptr_t) pipe_fd;
61 CreateThread (NULL, 0, parent_control_thread, (LPVOID) pipe_handle, 0, NULL); 61 CreateThread (NULL, 0, parent_control_thread, (LPVOID) pipe_handle, 0, NULL);
62} 62}
63 63