diff options
author | Nicolas Noble <nicolas@nobis-crew.org> | 2015-04-07 08:11:33 -0700 |
---|---|---|
committer | Nicolas Noble <nicolas@nobis-crew.org> | 2015-04-07 08:11:33 -0700 |
commit | a397330cc0f8177c7d3d2cbaac07134cbaa50c74 (patch) | |
tree | ddb6b15cea83c9bf136f10be26fc68d902a1bbc4 /src/core/support | |
parent | cee05a45ebf3ce527c1c5ee2266a97c8cb239ed4 (diff) |
Fixing MacOS build breakage introduced in #1191.
Diffstat (limited to 'src/core/support')
-rw-r--r-- | src/core/support/thd_posix.c | 2 |
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 */ |