aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/support/tls_pthread.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lib/support/tls_pthread.cc')
-rw-r--r--src/core/lib/support/tls_pthread.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lib/support/tls_pthread.cc b/src/core/lib/support/tls_pthread.cc
index 9ebee577fe..ebeef2a8c2 100644
--- a/src/core/lib/support/tls_pthread.cc
+++ b/src/core/lib/support/tls_pthread.cc
@@ -22,8 +22,8 @@
#include <grpc/support/tls.h>
-intptr_t gpr_tls_set(struct gpr_pthread_thread_local *tls, intptr_t value) {
- GPR_ASSERT(0 == pthread_setspecific(tls->key, (void *)value));
+intptr_t gpr_tls_set(struct gpr_pthread_thread_local* tls, intptr_t value) {
+ GPR_ASSERT(0 == pthread_setspecific(tls->key, (void*)value));
return value;
}