Skip to content

Commit

Permalink
strip namespace
Browse files Browse the repository at this point in the history
Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
  • Loading branch information
1 parent be4ecd7 commit c18d04c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/clusters/basic/basic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void emberAfBasicClusterServerInitCallback(chip::EndpointId endpoint)
snprintf(manufacturingDateString, sizeof(manufacturingDateString), "%04" PRIu16 "-%02" PRIu16 "-%02" PRIu16,
manufacturingYear, manufacturingMonth, manufacturingDayOfMonth);
status =
Attributes::ManufacturingDate::Set(endpoint, chip::CharSpan(manufacturingDateString, strlen(manufacturingDateString)));
Attributes::ManufacturingDate::Set(endpoint, CharSpan(manufacturingDateString, strlen(manufacturingDateString)));
VerifyOrReturn(EMBER_ZCL_STATUS_SUCCESS == status,
ChipLogError(Zcl, "Error setting Manufacturing Date String: 0x%02x", status));
}
Expand Down

0 comments on commit c18d04c

Please sign in to comment.