From 9dddef198b081bb6abb136ca74b6e654ba3ffcd1 Mon Sep 17 00:00:00 2001 From: "Peter W. Draper" <p.w.draper@durham.ac.uk> Date: Mon, 1 Oct 2018 18:32:09 +0100 Subject: [PATCH] Formatting --- src/velociraptor_dummy.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/velociraptor_dummy.c b/src/velociraptor_dummy.c index 5b8c8c4d61..9b364709b8 100644 --- a/src/velociraptor_dummy.c +++ b/src/velociraptor_dummy.c @@ -24,16 +24,21 @@ #include <stddef.h> /* Local includes. */ -#include "velociraptor_interface.h" #include "swift_velociraptor_part.h" +#include "velociraptor_interface.h" -/* Dummy VELOCIraptor interface for testing compilation without linking the actual VELOCIraptor library. */ +/* Dummy VELOCIraptor interface for testing compilation without linking the + * actual VELOCIraptor library. */ #ifdef HAVE_DUMMY_VELOCIRAPTOR int InitVelociraptor(char *config_name, char *output_name, struct cosmoinfo cosmo_info, struct unitinfo unit_info, - struct siminfo sim_info){return 0;} + struct siminfo sim_info) { + return 0; +} int InvokeVelociraptor(const size_t num_gravity_parts, const size_t num_hydro_parts, struct swift_vel_part *swift_parts, - const int *cell_node_ids, char *output_name) {return 0;} + const int *cell_node_ids, char *output_name) { + return 0; +} #endif /* HAVE_DUMMY_VELOCIRAPTOR */ -- GitLab