Skip to content

Commit

Permalink
Fix the build. (#7933)
Browse files Browse the repository at this point in the history
Merge conflict between changes to the codegen template and another PR
that added more generated bits in parallel.
  • Loading branch information
bzbarsky-apple authored Jun 26, 2021
1 parent 3f5e08c commit 5ab12fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/data_model/gen/CHIPClientCallbacks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ bool emberAfReadAttributesResponseCallback(ClusterId clusterId, uint8_t * messag
data[i].OffPremiseServicesReachableIPv6 = emberAfGetInt8u(message, 0, 1);
message += 1;
CHECK_STATUS(ReadByteSpan(message, 10, &data[i].HardwareAddress));
messageLen -= 10;
messageLen = static_cast<uint16_t>(messageLen - 10);
message += 10;
CHECK_MESSAGE_LENGTH(1);
data[i].Type = emberAfGetInt8u(message, 0, 1);
Expand Down

0 comments on commit 5ab12fe

Please sign in to comment.