Skip to content

Commit

Permalink
Add namespace prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Oct 23, 2024
1 parent f80cf68 commit cee5602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/codegen-data-model-provider/EmberDataBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ CHIP_ERROR EmberAttributeBuffer::DecodeSignedInteger(chip::TLV::TLVReader & read
// Value is in [min, max] RANGE
((value >= info.minValue) && (value <= info.maxValue))
// Nullable values reserve a specific value to mean NULL
&& !(mIsNullable && (value == SignedMinValueToNullValue(info.minValue)));
&& !(mIsNullable && (value == NumericLimits::SignedMinValueToNullValue(info.minValue)));

VerifyOrReturnError(valid, CHIP_IM_GLOBAL_STATUS(ConstraintError));
}
Expand Down

0 comments on commit cee5602

Please sign in to comment.