From 59a8c1a98e6ee6fff4a8b8a552e8f6589549bc88 Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Sat, 5 Mar 2016 17:53:49 +0000
Subject: [PATCH] Code formatting

---
 src/error.h | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/src/error.h b/src/error.h
index 6a21801350..4a6b931d49 100644
--- a/src/error.h
+++ b/src/error.h
@@ -37,11 +37,12 @@
  */
 #ifdef WITH_MPI
 extern int engine_rank;
-#define error(s, ...)                                                        \
-  {                                                                          \
-    fprintf(stderr, "[%04i] %s %s:%s():%i: " s "\n", engine_rank , \
-            clocks_get_timeofday(), __FILE__, __FUNCTION__, __LINE__, ##__VA_ARGS__); \
-    MPI_Abort(MPI_COMM_WORLD, -1);                                           \
+#define error(s, ...)                                                 \
+  {                                                                   \
+    fprintf(stderr, "[%04i] %s %s:%s():%i: " s "\n", engine_rank,     \
+            clocks_get_timeofday(), __FILE__, __FUNCTION__, __LINE__, \
+            ##__VA_ARGS__);                                           \
+    MPI_Abort(MPI_COMM_WORLD, -1);                                    \
   }
 #else
 #define error(s, ...)                                                 \
-- 
GitLab