aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-04-08 16:29:22 -0700
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-04-08 16:29:22 -0700
commitfb0edb86cdcabfcc4e07e6d6a08101b6dc7f5cef (patch)
treef7c0ff1b6b16eebba18353a472593d391815486f
parent7dde627a6a6981f53bcc55e2efcb2401ff103f04 (diff)
parentc8f95e359232417358cfe3797f9f090cec670a24 (diff)
Merge pull request #1231 from nicolasnoble/msys2-fix
Fixing msys2 compilation...
-rw-r--r--src/core/support/thd_win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/support/thd_win32.c b/src/core/support/thd_win32.c
index f92fb64a5c..3cc798293a 100644
--- a/src/core/support/thd_win32.c
+++ b/src/core/support/thd_win32.c
@@ -61,7 +61,7 @@ struct thd_info {
static thread_local struct thd_info *g_thd_info;
/* Destroys a thread info */
-static destroy_thread(struct thd_info *t) {
+static void destroy_thread(struct thd_info *t) {
if (t->joinable) CloseHandle(t->join_event);
gpr_free(t);
}