Skip to content

Commit

Permalink
Fix incorrect null pointer check
Browse files Browse the repository at this point in the history
  • Loading branch information
slowriot authored and benfrancis committed Apr 19, 2024
1 parent 3fff11d commit 039e038
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ namespace OpenZWave
if (Node* node = GetNodeUnsafe())
{
Group* group = node->GetGroup(groupIdx);
if ( NULL == group)
if ( NULL != group)
{
if (firstReports)
{
Expand Down

0 comments on commit 039e038

Please sign in to comment.