diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-04-08 18:13:58 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2015-04-08 18:13:58 +0200 |
commit | c8f95e359232417358cfe3797f9f090cec670a24 (patch) | |
tree | d6c784ab5966205857210fa2cb7d8e33f0db15c9 /src | |
parent | e6dc81facd63ec6f5ee4d45de4227e1114ad7a63 (diff) |
Fixing msys2 compilation...
Diffstat (limited to 'src')
-rw-r--r-- | src/core/support/thd_win32.c | 2 |
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); } |