clang-format fixes
diff --git a/src/core/lib/iomgr/network_status_tracker.c b/src/core/lib/iomgr/network_status_tracker.c
index f4f8e97..0e34605 100644
--- a/src/core/lib/iomgr/network_status_tracker.c
+++ b/src/core/lib/iomgr/network_status_tracker.c
@@ -31,9 +31,9 @@
  *
  */
 
-#include "src/core/lib/iomgr/endpoint.h"
 #include <grpc/support/alloc.h>
 #include <grpc/support/log.h>
+#include "src/core/lib/iomgr/endpoint.h"
 
 typedef struct endpoint_ll_node {
   grpc_endpoint *ep;
@@ -51,7 +51,7 @@
 }
 
 void grpc_destroy_network_status_monitor() {
-  for (endpoint_ll_node *curr = head; curr != NULL; ) {
+  for (endpoint_ll_node *curr = head; curr != NULL;) {
     endpoint_ll_node *next = curr->next;
     gpr_free(curr);
     curr = next;
@@ -86,9 +86,9 @@
   endpoint_ll_node *prev = head;
   // if we're unregistering the head, just move head to the next
   if (ep == head->ep) {
-      head = head->next;
-      gpr_free(prev);
-      found = true;
+    head = head->next;
+    gpr_free(prev);
+    found = true;
   } else {
     for (endpoint_ll_node *curr = head->next; curr != NULL; curr = curr->next) {
       if (ep == curr->ep) {