Skip to content

Commit 9df50bb

Browse files
slowriotbenfrancis
authored andcommitted
Fix incorrect null pointer check
1 parent 3fff11d commit 9df50bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cpp/src/command_classes/AssociationCommandConfiguration.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ namespace OpenZWave
183183
if (Node* node = GetNodeUnsafe())
184184
{
185185
Group* group = node->GetGroup(groupIdx);
186-
if ( NULL == group)
186+
if ( NULL != group)
187187
{
188188
if (firstReports)
189189
{

0 commit comments

Comments
 (0)