Skip to content

Commit

Permalink
Restyled by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and andreilitvin committed Jun 2, 2023
1 parent b2b9fdc commit c1fef18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/util/attribute-table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,10 @@ void emberAfPrintAttributeTable()
// halResetWatchdog();

ChipLogProgress(Zcl, ChipLogFormatMEI " / " ChipLogFormatMEI " / ", ChipLogValueMEI(cluster->clusterId),
ChipLogValueMEI(metaData->attributeId));
ChipLogValueMEI(metaData->attributeId));
ChipLogProgress(Zcl, "----");
ChipLogProgress(Zcl,
" / %x (%x) / %p / %p / ", metaData->attributeType, emberAfAttributeSize(metaData),
ChipLogProgress(
Zcl, " / %x (%x) / %p / %p / ", metaData->attributeType, emberAfAttributeSize(metaData),
(metaData->IsReadOnly() ? "RO" : "RW"),
(metaData->IsAutomaticallyPersisted() ? " nonvolatile " : (metaData->IsExternal() ? " extern " : " RAM ")));
status =
Expand Down Expand Up @@ -425,7 +425,7 @@ EmberAfStatus emAfReadAttribute(EndpointId endpoint, ClusterId cluster, Attribut
record.clusterId = cluster;
record.attributeId = attributeID;
status = emAfReadOrWriteAttribute(&record, &metadata, dataPtr, readLength,
false); // write?
false); // write?

if (status == EMBER_ZCL_STATUS_SUCCESS)
{
Expand Down

0 comments on commit c1fef18

Please sign in to comment.