diff --git a/src/core/lib/iomgr/network_status_tracker.c b/src/core/lib/iomgr/network_status_tracker.c
index f4f8e97a2528737135635b58ef90d0eb0e03f35a..0e34605c81d0d09bc51bdc9515c713298e6b4d5f 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_initialize_network_status_monitor() {
 }
 
 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 @@ void grpc_network_status_unregister_endpoint(grpc_endpoint *ep) {
   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) {
diff --git a/test/core/end2end/tests/network_status_change.c b/test/core/end2end/tests/network_status_change.c
index bbc8500702223e232df4522bd807e8bb48daede1..7e7628391debfeb8769e86d479128bf86683d82d 100644
--- a/test/core/end2end/tests/network_status_change.c
+++ b/test/core/end2end/tests/network_status_change.c
@@ -217,7 +217,6 @@ static void test_invoke_network_status_change(grpc_end2end_test_config config) {
   GPR_ASSERT(0 == strcmp(call_details.host, "foo.test.google.fr"));
   GPR_ASSERT(was_cancelled == 0);
 
-
   gpr_free(details);
   grpc_metadata_array_destroy(&initial_metadata_recv);
   grpc_metadata_array_destroy(&trailing_metadata_recv);