From 216b17107ef81dbc4ba62f97acdbefb5f3a81c17 Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <matthieu.schaller@durham.ac.uk>
Date: Thu, 10 Mar 2016 15:03:27 +0000
Subject: [PATCH] Cosmetics

---
 examples/main.c | 3 +--
 src/single_io.c | 4 ++--
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/examples/main.c b/examples/main.c
index 19c1011d5f..3783baddfa 100644
--- a/examples/main.c
+++ b/examples/main.c
@@ -495,8 +495,7 @@ int main(int argc, char *argv[]) {
   if (myrank == 0) {
     message(
         "Running on %lld gas particles and %lld DM particles until t=%.3e with "
-        "%i threads and %i "
-        "queues (dt_min=%.3e, dt_max=%.3e)...",
+        "%i threads and %i queues (dt_min=%.3e, dt_max=%.3e)...",
         N_total[0], N_total[1], time_end, e.nr_threads, e.sched.nr_queues,
         e.dt_min, e.dt_max);
     fflush(stdout);
diff --git a/src/single_io.c b/src/single_io.c
index 270ba429a5..8e1db6d12c 100644
--- a/src/single_io.c
+++ b/src/single_io.c
@@ -390,8 +390,8 @@ void read_ic_single(char* fileName, double dim[3], struct part** parts,
 
   /* Open SPH particles group */
   /* message("Reading particle arrays..."); */
-  message("BoxSize = %lf\n", dim[0]);
-  message("NumPart = [%d, %d] Total = %d\n", *Ngas, Ndm, *Ngparts);
+  message("BoxSize = %lf", dim[0]);
+  message("NumPart = [%d, %d] Total = %d", *Ngas, Ndm, *Ngparts);
 
   /* Loop over all particle types */
   for (int ptype = 0; ptype < 6; ptype++) {
-- 
GitLab