Skip to content

Commit cb6cf08

Browse files
committed
Fixed tabs.
1 parent 2c2a822 commit cb6cf08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/devrelay/types/Request.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ uint8_t Request::get_device_id() const { return device_id_; }
2828
void Request::init_command(uint8_t* cmd_data) const {
2929
std::fill(cmd_data, cmd_data + 9, 0);
3030
cmd_data[0] = get_command_number();
31-
cmd_data[1] = get_param_count();
32-
cmd_data[2] = get_device_id();
31+
cmd_data[1] = get_param_count();
32+
cmd_data[2] = get_device_id();
3333
}
3434

3535
std::unique_ptr<Request> Request::from_packet(const std::vector<uint8_t>& packet) {

0 commit comments

Comments
 (0)