Skip to content

Commit

Permalink
Findings from review
Browse files Browse the repository at this point in the history
  • Loading branch information
tomuben committed Oct 22, 2024
1 parent 1aa1ed1 commit 7412604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exaudfclient/exaudfclient.cc
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ int main(int argc, char **argv) {
return 1;
}
const char* script_options_parser_env_val = ::getenv("SCRIPT_OPTIONS_PARSER_VERSION");
const bool useCtpgScriptOptionsParser = script_options_parser_env_val != 0 &&
const bool useCtpgScriptOptionsParser = script_options_parser_env_val != nullptr &&
::strcmp(script_options_parser_env_val, "2") == 0;
#endif

Expand Down

0 comments on commit 7412604

Please sign in to comment.