Skip to content

Commit ae75fe3

Browse files
fix formatting error
1 parent 9280c19 commit ae75fe3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/global/global.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -241,13 +241,13 @@ void Parse_Param(char *name, char *value, struct Parameters *parms)
241241
parms->out_float32_GasEnergy = atoi(value);
242242
#endif // DE
243243
#ifdef MHD
244-
} else if (strcmp(name, "out_float32_magnetic_x")==0) {
244+
} else if (strcmp(name, "out_float32_magnetic_x") == 0) {
245245
parms->out_float32_magnetic_x = atoi(value);
246-
} else if (strcmp(name, "out_float32_magnetic_y")==0) {
246+
} else if (strcmp(name, "out_float32_magnetic_y") == 0) {
247247
parms->out_float32_magnetic_y = atoi(value);
248-
} else if (strcmp(name, "out_float32_magnetic_z")==0) {
248+
} else if (strcmp(name, "out_float32_magnetic_z") == 0) {
249249
parms->out_float32_magnetic_z = atoi(value);
250-
#endif // MHD
250+
#endif // MHD
251251
} else if (strcmp(name, "output_always") == 0) {
252252
int tmp = atoi(value);
253253
// In this case the CHOLLA_ASSERT macro runs into issuse with the readability-simplify-boolean-expr clang-tidy check

0 commit comments

Comments
 (0)