aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolas@nobis-crew.org>2015-04-07 08:11:33 -0700
committerGravatar Nicolas Noble <nicolas@nobis-crew.org>2015-04-07 08:11:33 -0700
commita397330cc0f8177c7d3d2cbaac07134cbaa50c74 (patch)
treeddb6b15cea83c9bf136f10be26fc68d902a1bbc4
parentcee05a45ebf3ce527c1c5ee2266a97c8cb239ed4 (diff)
Fixing MacOS build breakage introduced in #1191.
-rw-r--r--src/core/support/thd_posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/support/thd_posix.c b/src/core/support/thd_posix.c
index 7bf527201d..fa4eb50556 100644
--- a/src/core/support/thd_posix.c
+++ b/src/core/support/thd_posix.c
@@ -87,7 +87,7 @@ gpr_thd_id gpr_thd_currentid(void) {
}
void gpr_thd_join(gpr_thd_id t) {
- pthread_join(t, NULL);
+ pthread_join((pthread_t)t, NULL);
}
#endif /* GPR_POSIX_SYNC */