Skip to content

Commit

Permalink
Fix VERBOSE compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
ayufan committed Dec 9, 2019
1 parent c61f37e commit 4e98041
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eq3_v2/eq3_cmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ bool EQ3Climate::send_command(void *command, uint16_t length) {

if (result) {
ESP_LOGV(TAG, "Sent of `%s` to %10llx to handle %04x.",
hexencode(command, length).c_str(), address, command_handle);
hexencode((const uint8_t*)command, length).c_str(), address, command_handle);
} else {
ESP_LOGV(TAG, "Send of `%s` to %10llx to handle %04x: %d",
hexencode(command, length).c_str(), address, command_handle, result);
hexencode((const uint8_t*)command, length).c_str(), address, command_handle, result);
}

return result;
Expand Down

0 comments on commit 4e98041

Please sign in to comment.