Skip to content

Commit

Permalink
Fix macro usage
Browse files Browse the repository at this point in the history
  • Loading branch information
andy31415 committed Jan 15, 2024
1 parent 8b12cb1 commit 45e920a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/util/attribute-storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1247,7 +1247,7 @@ void emAfLoadAttributeDefaults(EndpointId endpoint, Optional<ClusterId> clusterI
// First check for a persisted value.
if (am->IsAutomaticallyPersisted())
{
VerifyOrDieWithMsg(attrStorage != nullptr, "Attribute persistence needs a persistence provider");
VerifyOrDieWithMsg(attrStorage != nullptr, Zcl, "Attribute persistence needs a persistence provider");
MutableByteSpan bytes(attrData);
CHIP_ERROR err = attrStorage->ReadValue(
app::ConcreteAttributePath(de->endpoint, cluster->clusterId, am->attributeId), am, bytes);
Expand Down

0 comments on commit 45e920a

Please sign in to comment.