From 74126040963749738a7d85d475cc34e7e5e805f4 Mon Sep 17 00:00:00 2001 From: Thomas Ubensee <34603111+tomuben@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:01:22 -0300 Subject: [PATCH] Findings from review --- exaudfclient/exaudfclient.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exaudfclient/exaudfclient.cc b/exaudfclient/exaudfclient.cc index f0f31be2..e2f06442 100644 --- a/exaudfclient/exaudfclient.cc +++ b/exaudfclient/exaudfclient.cc @@ -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