diff --git a/src/velociraptor_interface.c b/src/velociraptor_interface.c index 34c2f4325b30bba098148785a569c23498f07afd..0620d55d9a454c0dcf459ab77f8e7f3d0c1e58f0 100644 --- a/src/velociraptor_interface.c +++ b/src/velociraptor_interface.c @@ -661,7 +661,8 @@ void velociraptor_invoke(struct engine *e, const int linked_with_snap) { /* Then create output-specific subdirectory if necessary */ char subDirName[FILENAME_BUFFER_SIZE] = ""; - if (strcmp(e->stf_subdir_per_output, engine_default_stf_subdir_per_output) != 0) { + if (strcmp(e->stf_subdir_per_output, engine_default_stf_subdir_per_output) != + 0) { if (snprintf(subDirName, FILENAME_BUFFER_SIZE, "%s%s_%04i/", outputDirName, e->stf_subdir_per_output, e->stf_output_count) >= FILENAME_BUFFER_SIZE) { @@ -719,9 +720,9 @@ void velociraptor_invoke(struct engine *e, const int linked_with_snap) { /* Call VELOCIraptor. */ group_info = (struct groupinfo *)InvokeVelociraptor( - e->stf_output_count, outputFileName, cosmo_info, sim_info, nr_gparts, nr_parts, - nr_sparts, swift_parts, cell_node_ids, e->nr_threads, linked_with_snap, - &num_gparts_in_groups); + e->stf_output_count, outputFileName, cosmo_info, sim_info, nr_gparts, + nr_parts, nr_sparts, swift_parts, cell_node_ids, e->nr_threads, + linked_with_snap, &num_gparts_in_groups); /* Report that the memory was freed */ memuse_log_allocation("VR.cell_loc", sim_info.cell_loc, 0, 0);