From 6d0b8e1546b5d68b6aa63b01bea87bce901d63e6 Mon Sep 17 00:00:00 2001 From: Shubham Patil Date: Wed, 27 Dec 2023 16:08:12 +0530 Subject: [PATCH] Add space after %p format specifier --- src/app/util/attribute-table.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/util/attribute-table.cpp b/src/app/util/attribute-table.cpp index a4829d5d98719d..58430ac5aebab6 100644 --- a/src/app/util/attribute-table.cpp +++ b/src/app/util/attribute-table.cpp @@ -172,7 +172,7 @@ EmberAfStatus emAfWriteAttribute(EndpointId endpoint, ClusterId cluster, Attribu // if we dont support that attribute if (metadata == nullptr) { - ChipLogProgress(Zcl, "%pep %x clus " ChipLogFormatMEI " attr " ChipLogFormatMEI " not supported", "WRITE ERR: ", endpoint, + ChipLogProgress(Zcl, "%p ep %x clus " ChipLogFormatMEI " attr " ChipLogFormatMEI " not supported", "WRITE ERR: ", endpoint, ChipLogValueMEI(cluster), ChipLogValueMEI(attributeID)); return status; } @@ -182,13 +182,13 @@ EmberAfStatus emAfWriteAttribute(EndpointId endpoint, ClusterId cluster, Attribu { if (dataType != metadata->attributeType) { - ChipLogProgress(Zcl, "%pinvalid data type", "WRITE ERR: "); + ChipLogProgress(Zcl, "%p invalid data type", "WRITE ERR: "); return EMBER_ZCL_STATUS_INVALID_DATA_TYPE; } if (metadata->IsReadOnly()) { - ChipLogProgress(Zcl, "%pattr not writable", "WRITE ERR: "); + ChipLogProgress(Zcl, "%p attr not writable", "WRITE ERR: "); return EMBER_ZCL_STATUS_UNSUPPORTED_WRITE; } }