Fix clang-format script
diff --git a/src/core/iomgr/pollset_windows.c b/src/core/iomgr/pollset_windows.c
index 4b82a48..8d91ef4 100644
--- a/src/core/iomgr/pollset_windows.c
+++ b/src/core/iomgr/pollset_windows.c
@@ -51,22 +51,21 @@
   gpr_mu_init(&g_polling_mu);
   g_active_poller = NULL;
   g_global_root_worker.links[GRPC_POLLSET_WORKER_LINK_GLOBAL].next =
-    g_global_root_worker.links[GRPC_POLLSET_WORKER_LINK_GLOBAL].prev =
-    &g_global_root_worker;
+      g_global_root_worker.links[GRPC_POLLSET_WORKER_LINK_GLOBAL].prev =
+          &g_global_root_worker;
 }
 
-void grpc_pollset_global_shutdown() {
-  gpr_mu_destroy(&g_polling_mu);
-}
+void grpc_pollset_global_shutdown() { gpr_mu_destroy(&g_polling_mu); }
 
-static void remove_worker(grpc_pollset_worker *worker, 
+static void remove_worker(grpc_pollset_worker *worker,
                           grpc_pollset_worker_link_type type) {
   worker->links[type].prev->links[type].next = worker->links[type].next;
   worker->links[type].next->links[type].prev = worker->links[type].prev;
   worker->links[type].next = worker->links[type].prev = worker;
 }
 
-static int has_workers(grpc_pollset_worker *root, grpc_pollset_worker_link_type type) {
+static int has_workers(grpc_pollset_worker *root,
+                       grpc_pollset_worker_link_type type) {
   return root->links[type].next != root;
 }
 
@@ -81,24 +80,22 @@
   }
 }
 
-static void push_back_worker(grpc_pollset_worker *root, 
-                             grpc_pollset_worker_link_type type, 
+static void push_back_worker(grpc_pollset_worker *root,
+                             grpc_pollset_worker_link_type type,
                              grpc_pollset_worker *worker) {
   worker->links[type].next = root;
   worker->links[type].prev = worker->links[type].next->links[type].prev;
-  worker->links[type].prev->links[type].next = 
-    worker->links[type].next->links[type].prev = 
-    worker;
+  worker->links[type].prev->links[type].next =
+      worker->links[type].next->links[type].prev = worker;
 }
 
-static void push_front_worker(grpc_pollset_worker *root, 
-                              grpc_pollset_worker_link_type type, 
+static void push_front_worker(grpc_pollset_worker *root,
+                              grpc_pollset_worker_link_type type,
                               grpc_pollset_worker *worker) {
   worker->links[type].prev = root;
   worker->links[type].next = worker->links[type].prev->links[type].next;
-  worker->links[type].prev->links[type].next = 
-    worker->links[type].next->links[type].prev = 
-    worker;
+  worker->links[type].prev->links[type].next =
+      worker->links[type].next->links[type].prev = worker;
 }
 
 /* There isn't really any such thing as a pollset under Windows, due to the
@@ -109,9 +106,9 @@
 void grpc_pollset_init(grpc_pollset *pollset) {
   memset(pollset, 0, sizeof(*pollset));
   gpr_mu_init(&pollset->mu);
-  pollset->root_worker.links[GRPC_POLLSET_WORKER_LINK_POLLSET].next = 
-    pollset->root_worker.links[GRPC_POLLSET_WORKER_LINK_POLLSET].prev = 
-    &pollset->root_worker;
+  pollset->root_worker.links[GRPC_POLLSET_WORKER_LINK_POLLSET].next =
+      pollset->root_worker.links[GRPC_POLLSET_WORKER_LINK_POLLSET].prev =
+          &pollset->root_worker;
 }
 
 void grpc_pollset_shutdown(grpc_exec_ctx *exec_ctx, grpc_pollset *pollset,
@@ -135,9 +132,8 @@
                        grpc_pollset_worker *worker, gpr_timespec now,
                        gpr_timespec deadline) {
   int added_worker = 0;
-  worker->links[GRPC_POLLSET_WORKER_LINK_POLLSET].next = 
-    worker->links[GRPC_POLLSET_WORKER_LINK_POLLSET].prev = 
-    NULL;
+  worker->links[GRPC_POLLSET_WORKER_LINK_POLLSET].next =
+      worker->links[GRPC_POLLSET_WORKER_LINK_POLLSET].prev = NULL;
   gpr_cv_init(&worker->cv);
   if (grpc_alarm_check(exec_ctx, now, &deadline)) {
     goto done;
@@ -156,7 +152,8 @@
       gpr_mu_lock(&g_polling_mu);
       pollset->is_iocp_worker = 0;
       g_active_poller = NULL;
-      next_worker = pop_front_worker(&g_global_root_worker, GRPC_POLLSET_WORKER_LINK_GLOBAL);
+      next_worker = pop_front_worker(&g_global_root_worker,
+                                     GRPC_POLLSET_WORKER_LINK_GLOBAL);
       if (next_worker != NULL) {
         gpr_cv_signal(&next_worker->cv);
       }
@@ -168,9 +165,11 @@
       }
       goto done;
     }
-    push_front_worker(&g_global_root_worker, GRPC_POLLSET_WORKER_LINK_GLOBAL, worker);
+    push_front_worker(&g_global_root_worker, GRPC_POLLSET_WORKER_LINK_GLOBAL,
+                      worker);
     gpr_mu_unlock(&g_polling_mu);
-    push_front_worker(&pollset->root_worker, GRPC_POLLSET_WORKER_LINK_POLLSET, worker);
+    push_front_worker(&pollset->root_worker, GRPC_POLLSET_WORKER_LINK_POLLSET,
+                      worker);
     added_worker = 1;
     gpr_cv_wait(&worker->cv, &pollset->mu, deadline);
   } else {
@@ -192,9 +191,11 @@
 void grpc_pollset_kick(grpc_pollset *p, grpc_pollset_worker *specific_worker) {
   if (specific_worker != NULL) {
     if (specific_worker == GRPC_POLLSET_KICK_BROADCAST) {
-      for (specific_worker = p->root_worker.links[GRPC_POLLSET_WORKER_LINK_POLLSET].next;
+      for (specific_worker =
+               p->root_worker.links[GRPC_POLLSET_WORKER_LINK_POLLSET].next;
            specific_worker != &p->root_worker;
-           specific_worker = specific_worker->links[GRPC_POLLSET_WORKER_LINK_POLLSET].next) {
+           specific_worker =
+               specific_worker->links[GRPC_POLLSET_WORKER_LINK_POLLSET].next) {
         gpr_cv_signal(&specific_worker->cv);
       }
       p->kicked_without_pollers = 1;
@@ -213,7 +214,8 @@
       }
     }
   } else {
-    specific_worker = pop_front_worker(&p->root_worker, GRPC_POLLSET_WORKER_LINK_POLLSET);
+    specific_worker =
+        pop_front_worker(&p->root_worker, GRPC_POLLSET_WORKER_LINK_POLLSET);
     if (specific_worker != NULL) {
       grpc_pollset_kick(p, specific_worker);
     } else if (p->is_iocp_worker) {
@@ -224,8 +226,6 @@
   }
 }
 
-void grpc_kick_poller(void) {
-  grpc_iocp_kick();
-}
+void grpc_kick_poller(void) { grpc_iocp_kick(); }
 
 #endif /* GPR_WINSOCK_SOCKET */