From ae75fe35c66cb8fdf0ab6cc6106598468fbe1297 Mon Sep 17 00:00:00 2001 From: Evan Schneider Date: Fri, 2 Feb 2024 15:56:41 -0500 Subject: [PATCH] fix formatting error --- src/global/global.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/global/global.cpp b/src/global/global.cpp index 3a56305b9..64eac0d5b 100644 --- a/src/global/global.cpp +++ b/src/global/global.cpp @@ -241,13 +241,13 @@ void Parse_Param(char *name, char *value, struct Parameters *parms) parms->out_float32_GasEnergy = atoi(value); #endif // DE #ifdef MHD - } else if (strcmp(name, "out_float32_magnetic_x")==0) { + } else if (strcmp(name, "out_float32_magnetic_x") == 0) { parms->out_float32_magnetic_x = atoi(value); - } else if (strcmp(name, "out_float32_magnetic_y")==0) { + } else if (strcmp(name, "out_float32_magnetic_y") == 0) { parms->out_float32_magnetic_y = atoi(value); - } else if (strcmp(name, "out_float32_magnetic_z")==0) { + } else if (strcmp(name, "out_float32_magnetic_z") == 0) { parms->out_float32_magnetic_z = atoi(value); -#endif // MHD +#endif // MHD } else if (strcmp(name, "output_always") == 0) { int tmp = atoi(value); // In this case the CHOLLA_ASSERT macro runs into issuse with the readability-simplify-boolean-expr clang-tidy check