aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/support/tls_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/support/tls_test.c')
-rw-r--r--test/core/support/tls_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/support/tls_test.c b/test/core/support/tls_test.c
index 5529d5cf59..b1b4737432 100644
--- a/test/core/support/tls_test.c
+++ b/test/core/support/tls_test.c
@@ -30,7 +30,7 @@
GPR_TLS_DECL(test_var);
-static void thd_body(void *arg) {
+static void thd_body(void* arg) {
intptr_t i;
GPR_ASSERT(gpr_tls_get(&test_var) == 0);
@@ -44,7 +44,7 @@ static void thd_body(void *arg) {
/* ------------------------------------------------- */
-int main(int argc, char *argv[]) {
+int main(int argc, char* argv[]) {
gpr_thd_options opt = gpr_thd_options_default();
int i;
gpr_thd_id threads[NUM_THREADS];