diff --git a/src/cell.c b/src/cell.c
index ceac0379e3e95fd6fa5a275d3735f6ba52953ec6..d4cea2b09ef9dc5a102e46dd216a17dc34b604c4 100644
--- a/src/cell.c
+++ b/src/cell.c
@@ -1157,7 +1157,8 @@ void cell_check_multipole(struct cell *c, void *data) {
 
     /* Now  compare the multipole expansion */
     if (!gravity_multipole_equal(&ma, c->multipole, tolerance)) {
-      message("Multipoles are not equal at depth=%d! tol=%f", c->depth, tolerance);
+      message("Multipoles are not equal at depth=%d! tol=%f", c->depth,
+              tolerance);
       message("Correct answer:");
       gravity_multipole_print(&ma.m_pole);
       message("Recursive multipole:");
@@ -1504,10 +1505,9 @@ void cell_drift_all_multipoles(struct cell *c, const struct engine *e) {
 
   /* Check that we are actually going to move forward. */
   if (ti_current < ti_old_multipole) error("Attempt to drift to the past");
-  
+
   /* Drift the multipole */
-  if (ti_current > ti_old_multipole)
-    gravity_drift(c->multipole, dt);
+  if (ti_current > ti_old_multipole) gravity_drift(c->multipole, dt);
 
   /* Are we not in a leaf ? */
   if (c->split) {