Skip to content

Commit 12ad52c

Browse files
committed
Fix more renames
1 parent ba47516 commit 12ad52c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/clusters/descriptor/descriptor.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,15 @@ CHIP_ERROR DescriptorAttrAccess::ReadPartsAttribute(EndpointId endpoint, Attribu
129129

130130
// find the given endpoint
131131
unsigned idx = 0;
132-
while (idx < endpoints.size())
132+
while (idx < endpoints.Size())
133133
{
134134
if (endpoints[idx].id == endpoint)
135135
{
136136
break;
137137
}
138138
idx++;
139139
}
140-
if (idx >= endpoints.size())
140+
if (idx >= endpoints.Size())
141141
{
142142
// not found
143143
return CHIP_ERROR_NOT_FOUND;

0 commit comments

Comments
 (0)