Skip to content

Commit 2a21a13

Browse files
authored
fix(zigbee): fixing TAB identation
1 parent d3a1c5c commit 2a21a13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/Zigbee/src/ZigbeeEP.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ bool ZigbeeEP::setManufacturerAndModel(const char *name, const char *model) {
4040
size_t name_length = strlen(name);
4141
size_t model_length = strlen(model);
4242
if (name_length > ZB_MAX_NAME_LENGTH || model_length > ZB_MAX_NAME_LENGTH) {
43-
log_e("Manufacturer or model name is too long");
44-
return false;
43+
log_e("Manufacturer or model name is too long");
44+
return false;
4545
}
4646
// Allocate a new array of size length + 2 (1 for the length, 1 for null terminator)
4747
std::vector<char> zb_name(name_length + 2); // +2 for length byte and null terminator

0 commit comments

Comments
 (0)