Skip to content

Commit

Permalink
Merge pull request #4 from kiddigital/patch-1
Browse files Browse the repository at this point in the history
Fix code intent AND prevents GCC compile error
  • Loading branch information
gizmocuz authored Dec 5, 2022
2 parents ab7d6d7 + 3fc7399 commit 5550fa3
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 5550fa3

Please sign in to comment.