Skip to content

Commit

Permalink
fix formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
evaneschneider committed Feb 2, 2024
1 parent 9280c19 commit ae75fe3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/global/global.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ae75fe3

Please sign in to comment.