diff --git a/src/core/ext/transport/chttp2/client/secure/secure_channel_create.c b/src/core/ext/transport/chttp2/client/secure/secure_channel_create.c
index fe9da4bcbc2b2fc353235bbb23a7f6f8b3573a21..4e33b6fa612ff1bb0b85efa7faa4f10250d86a08 100644
--- a/src/core/ext/transport/chttp2/client/secure/secure_channel_create.c
+++ b/src/core/ext/transport/chttp2/client/secure/secure_channel_create.c
@@ -138,10 +138,9 @@ static void on_handshake_done(grpc_exec_ctx *exec_ctx, grpc_endpoint *endpoint,
     // handshake API, and then move the code from on_secure_handshake_done()
     // into this function.
     c->tmp_args = args;
-    grpc_channel_security_connector_do_handshake(exec_ctx,
-                                                 c->security_connector,
-                                                 endpoint, c->args.deadline,
-                                                 on_secure_handshake_done, c);
+    grpc_channel_security_connector_do_handshake(
+        exec_ctx, c->security_connector, endpoint, c->args.deadline,
+        on_secure_handshake_done, c);
   }
 }
 
diff --git a/src/core/lib/channel/handshaker.h b/src/core/lib/channel/handshaker.h
index b1a0ba87391f52022bb20807bf3a0d7ece32ae9d..dfc469c417ba46c5a8537f0f59500943de9bea70 100644
--- a/src/core/lib/channel/handshaker.h
+++ b/src/core/lib/channel/handshaker.h
@@ -60,8 +60,7 @@ typedef struct grpc_handshaker grpc_handshaker;
 typedef void (*grpc_handshaker_done_cb)(grpc_exec_ctx* exec_ctx,
                                         grpc_endpoint* endpoint,
                                         grpc_channel_args* args,
-                                        void* user_data,
-                                        grpc_error* error);
+                                        void* user_data, grpc_error* error);
 
 struct grpc_handshaker_vtable {
   /// Destroys the handshaker.