From f784e801bb615ce69716803cd7497167dffe1438 Mon Sep 17 00:00:00 2001
From: Enzo De Carvalho Bittencourt <enzo.decarvalhobittencourt@ensiie.eu>
Date: Tue, 10 Oct 2023 12:15:22 +0200
Subject: [PATCH] styling

---
 src/pass_mpi_collective.cpp | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/pass_mpi_collective.cpp b/src/pass_mpi_collective.cpp
index 0271dcc..bfca0c4 100644
--- a/src/pass_mpi_collective.cpp
+++ b/src/pass_mpi_collective.cpp
@@ -176,17 +176,17 @@ char *pass_mpi_collective::cfgviz_generate_filename(function *fun,
 
 	target_filename = (char *)xmalloc(1024 * sizeof(char));
 	int line = LOCATION_LINE(fun->function_start_locus);
-	const char * mfilename = 
-		std::filesystem::path(LOCATION_FILE(fun->function_start_locus))
-		.filename().c_str();
+	const char *mfilename =
+	  std::filesystem::path(LOCATION_FILE(fun->function_start_locus))
+	  .filename().c_str();
 
 	snprintf(target_filename, 1024, "%s%s_%s_%d_%s.dot",
-		"dot/",
-	  mfilename,
-	  function_name(fun),
-	  line,
-		suffix);
-	
+	         "dot/",
+	         mfilename,
+	         function_name(fun),
+	         line,
+	         suffix);
+
 	return target_filename;
 }
 
-- 
GitLab