diff --git a/src/cooling/EAGLE/cooling.c b/src/cooling/EAGLE/cooling.c
index 3360bab5bb9ca9b638f84d346b5ce9ea0bc8b9b3..d1c2e7c065cc2332b464396f4b746f13c5cf62f8 100644
--- a/src/cooling/EAGLE/cooling.c
+++ b/src/cooling/EAGLE/cooling.c
@@ -48,7 +48,6 @@
 #include "space.h"
 #include "units.h"
 
-
 /* Maximum number of iterations for newton
  * and bisection integration schemes */
 static const int newton_max_iterations = 15;
@@ -560,8 +559,8 @@ void cooling_cool_part(const struct phys_const *phys_const,
       Helium_reion_heat_cgs / (dt_cgs * ratefact_cgs);
 
   /* Let's compute the internal energy at the end of the step */
-  /* Initialise to the initial energy to appease compiler; this will never not be
-     overwritten. */
+  /* Initialise to the initial energy to appease compiler; this will never not
+     be overwritten. */
   double u_final_cgs = u_0_cgs;
 
   /* First try an explicit integration (note we ignore the derivative) */