diff --git a/src/runner_doiact_vec.c b/src/runner_doiact_vec.c index b91d288529c0706693d74b0c54d688ee0944aa29..d78de2cd3c508fd17a816316dc931010f2febf80 100644 --- a/src/runner_doiact_vec.c +++ b/src/runner_doiact_vec.c @@ -287,7 +287,7 @@ __attribute__((always_inline)) INLINE void runner_doself1_density_vec( if (!cell_is_active(c, e)) return; - if (!cell_is_drifted(c, e)) cell_drift(c, e); + if (!cell_is_drifted(c, e)) cell_drift_particles(c, e); /* Get the particle cache from the runner and re-allocate * the cache if it is not big enough for the cell. */ @@ -536,7 +536,7 @@ __attribute__((always_inline)) INLINE void runner_doself1_density_vec_2( if (!cell_is_active(c, e)) return; - if (!cell_is_drifted(c, e)) cell_drift(c, e); + if (!cell_is_drifted(c, e)) cell_drift_particles(c, e); /* TODO: Need to find two active particles, not just one. */ diff --git a/tests/testDump.c b/tests/testDump.c index 32cffcbf2f832cae0ffb2ccb36f52699d1f1898f..7343af49f654582de444681ec291311d41251dca 100644 --- a/tests/testDump.c +++ b/tests/testDump.c @@ -81,7 +81,7 @@ int main(int argc, char *argv[]) { /* Clean the threads */ threadpool_clean(&t); - + /* Return a happy number. */ return 0; }