Skip to content

Commit 07e78e0

Browse files
restyled-commitsnivi-apple
authored andcommittedJul 26, 2024··
Restyled by clang-format
1 parent cb96615 commit 07e78e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/app/clusters/thermostat-server/PresetStructWithOwnedMembers.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ CHIP_ERROR PresetStructWithOwnedMembers::SetName(const Optional<DataModel::Nulla
8585
size_t newNameSize = newName.Value().Value().size();
8686
if (newNameSize > kPresetNameSize)
8787
{
88-
ChipLogError(Zcl, "Failed to set Preset name. New name size (%u) > allowed preset name size (%u)", static_cast<uint8_t>(newNameSize),
89-
static_cast<uint8_t>(kPresetNameSize));
88+
ChipLogError(Zcl, "Failed to set Preset name. New name size (%u) > allowed preset name size (%u)",
89+
static_cast<uint8_t>(newNameSize), static_cast<uint8_t>(kPresetNameSize));
9090
return CHIP_ERROR_NO_MEMORY;
9191
}
9292
MutableCharSpan targetSpan(presetNameData);

0 commit comments

Comments
 (0)
Please sign in to comment.