Skip to content

Commit d11c2ba

Browse files
restyled-commitshicklin
authored andcommitted
Restyled by clang-format
1 parent 45a4004 commit d11c2ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/clusters/service-area-server/service-area-cluster-objects.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ struct AreaStructureWrapper : public chip::app::Clusters::ServiceArea::Structs::
115115
memcpy(mAreaNameBuffer, locationName.data(), sizeToCopy);
116116
areaDesc.locationInfo.Value().locationName = CharSpan(mAreaNameBuffer, sizeToCopy);
117117

118-
areaDesc.locationInfo.Value().floorNumber = floorNumber;
119-
areaDesc.locationInfo.Value().areaType = areaType;
118+
areaDesc.locationInfo.Value().floorNumber = floorNumber;
119+
areaDesc.locationInfo.Value().areaType = areaType;
120120

121121
return *this;
122122
}
@@ -322,7 +322,7 @@ struct MapStructureWrapper : public chip::app::Clusters::ServiceArea::Structs::M
322322
*/
323323
void Set(uint32_t aMapId, const CharSpan & aMapName)
324324
{
325-
mapID = aMapId;
325+
mapID = aMapId;
326326
// Copy the name. If the name is larger than kMapNameMaxSize, truncate it to fit.
327327
auto sizeToCopy = std::min(kMapNameMaxSize, aMapName.size());
328328
memcpy(mMapNameBuffer, aMapName.data(), sizeToCopy);

0 commit comments

Comments
 (0)