aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/support/tls_test.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-12-22 13:49:30 -0800
committerGravatar Craig Tiller <ctiller@google.com>2015-12-22 13:49:30 -0800
commit7536af02cf218f8dcb1368bec6d86c65db95c9b4 (patch)
treecd560e1321aed28504aca5358dabbf49692a0956 /test/core/support/tls_test.c
parent2d2963e5e919128929e8a62a17fbbc9f3fd684d9 (diff)
Eliminate gpr_ int types - and insist on C99 variants instead
Diffstat (limited to 'test/core/support/tls_test.c')
-rw-r--r--test/core/support/tls_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/support/tls_test.c b/test/core/support/tls_test.c
index 0a3c28417f..c6fb1a4a26 100644
--- a/test/core/support/tls_test.c
+++ b/test/core/support/tls_test.c
@@ -46,7 +46,7 @@
GPR_TLS_DECL(test_var);
static void thd_body(void *arg) {
- gpr_intptr i;
+ intptr_t i;
GPR_ASSERT(gpr_tls_get(&test_var) == 0);