diff --git a/mongoose.c b/mongoose.c
index 77af2a6ef817c748fd059bed3d5b6509e4ad3759..1b65b41500c20307c13aaea350e7418eb67b0b73 100644
--- a/mongoose.c
+++ b/mongoose.c
@@ -4345,7 +4345,9 @@ int mg_upload(struct mg_connection *conn, const char *destination_dir) {
 
 static int is_put_or_delete_request(const struct mg_connection *conn) {
   const char *s = conn->request_info.request_method;
-  return s != NULL && (!strcmp(s, "PUT") || !strcmp(s, "DELETE") || !strcmp(s, "MKCOL"));
+  return s != NULL && (!strcmp(s, "PUT") ||
+                       !strcmp(s, "DELETE") ||
+                       !strcmp(s, "MKCOL"));
 }
 
 static int get_first_ssl_listener_index(const struct mg_context *ctx) {