mirror of
https://github.com/espressif/esp-idf.git
synced 2025-12-15 11:31:39 +00:00
all: Removes unnecessary newline character in logs
Closes https://github.com/espressif/esp-idf/issues/11465
This commit is contained in:
@@ -227,9 +227,9 @@ otError SpiSpinelInterface::WaitForFrame(uint64_t timeout_us)
|
||||
int ret = select(m_event_fd + 1, &read_fds, NULL, &error_fds, &timeout);
|
||||
if (ret <= 0 || !FD_ISSET(m_event_fd, &read_fds)) {
|
||||
if (FD_ISSET(m_event_fd, &error_fds)) {
|
||||
ESP_LOGW(OT_PLAT_LOG_TAG, "FD error!\n");
|
||||
ESP_LOGW(OT_PLAT_LOG_TAG, "FD error!");
|
||||
}
|
||||
ESP_LOGW(OT_PLAT_LOG_TAG, "SPI transaction timeout for %llu us, result %d\n", timeout_us, ret);
|
||||
ESP_LOGW(OT_PLAT_LOG_TAG, "SPI transaction timeout for %llu us, result %d", timeout_us, ret);
|
||||
return OT_ERROR_RESPONSE_TIMEOUT;
|
||||
}
|
||||
read(m_event_fd, &event, sizeof(event));
|
||||
|
||||
Reference in New Issue
Block a user