diff --git a/examples/chip-tool/commands/icd/ICDCommand.cpp b/examples/chip-tool/commands/icd/ICDCommand.cpp index 6b4463098d06a9..f3b43cfce6497f 100644 --- a/examples/chip-tool/commands/icd/ICDCommand.cpp +++ b/examples/chip-tool/commands/icd/ICDCommand.cpp @@ -43,7 +43,8 @@ CHIP_ERROR ICDListCommand::RunCommand() info.start_icd_counter, info.offset, ChipLogValueX64(info.monitored_subject)); static_assert(std::is_same::value, - "The following BytesToHex can copy/encode the key bytes from sharedKey to hexadecimal format, which only works for RawKeySessionKeystore"); + "The following BytesToHex can copy/encode the key bytes from sharedKey to hexadecimal format, which only " + "works for RawKeySessionKeystore"); Encoding::BytesToHex(info.shared_key.As(), Crypto::kAES_CCM128_Key_Length, icdSymmetricKeyHex, sizeof(icdSymmetricKeyHex), chip::Encoding::HexFlags::kNullTerminate); fprintf(stderr, " | Symmetric Key: %60s |\n", icdSymmetricKeyHex);