From c1fef18ee0f8f728335393f1c1715a2722bdde8f Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Fri, 2 Jun 2023 13:45:48 +0000 Subject: [PATCH] Restyled by clang-format --- src/app/util/attribute-table.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/util/attribute-table.cpp b/src/app/util/attribute-table.cpp index 1d08e8f80971dd..8b7edef03e02d4 100644 --- a/src/app/util/attribute-table.cpp +++ b/src/app/util/attribute-table.cpp @@ -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 = @@ -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) {