Skip to content

Commit 049f5b2

Browse files
authored
Remove extra comma in DishwasherAlarmServer (project-chip#34325)
1 parent 4ece978 commit 049f5b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/clusters/dishwasher-alarm-server/dishwasher-alarm-server.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,13 @@ Status DishwasherAlarmServer::GetSupportedValue(EndpointId endpoint, BitMask<Ala
129129
Status DishwasherAlarmServer::SetSupportedValue(EndpointId endpoint, const BitMask<AlarmMap> supported)
130130
{
131131
Status status = Status::Success;
132-
;
132+
133133
if ((status = Attributes::Supported::Set(endpoint, supported)) != Status::Success)
134134
{
135135
ChipLogProgress(Zcl, "Dishwasher Alarm: ERR: writing supported, err:0x%x", to_underlying(status));
136136
return status;
137137
}
138+
138139
// Whenever there is change in Supported attribute, Latch should change accordingly (if possible).
139140
BitMask<AlarmMap> latch;
140141
if (GetLatchValue(endpoint, &latch) == Status::Success && !supported.HasAll(latch))

0 commit comments

Comments
 (0)