diff --git a/src/active.h b/src/active.h
index 7aa8a145526e7edf65e40b1e489f034cf6eb6479..5bbbd3803cb09e7aa05ddb15e2e5c2a15b27602c 100644
--- a/src/active.h
+++ b/src/active.h
@@ -85,6 +85,8 @@ __attribute__((always_inline)) INLINE static int cell_are_gpart_drifted(
 __attribute__((always_inline)) INLINE static int cell_are_spart_drifted(
     const struct cell *c, const struct engine *e) {
 
+  /* Currently just use the gpart drift
+   * This function is just for clarity */
   return cell_are_gpart_drifted(c, e);
 }
 
diff --git a/src/timers.c b/src/timers.c
index 2a02bbbacfedecfaa327f71cdb0b6b1145647082..a7f4c3cedf4872aac7bc5c13503ce9cf994b90ee 100644
--- a/src/timers.c
+++ b/src/timers.c
@@ -94,7 +94,8 @@ const char* timers_names[timer_count] = {"none",
                                          "dosubpair_stars_density",
                                          "dosub_self_stars_density",
                                          "logger",
-                                         "do_stars_sort"};
+                                         "do_stars_sort",
+};
 
 /* File to store the timers */
 static FILE* timers_file;