mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-12-06 00:59:29 +01:00
fix(websocket): Cleaned up printf/format warnings (-Wno-format)
This commit is contained in:
@@ -1107,7 +1107,7 @@ int esp_websocket_client_send_with_opcode(esp_websocket_client_handle_t client,
|
||||
}
|
||||
|
||||
if (xSemaphoreTakeRecursive(client->lock, timeout) != pdPASS) {
|
||||
ESP_LOGE(TAG, "Could not lock ws-client within %d timeout", timeout);
|
||||
ESP_LOGE(TAG, "Could not lock ws-client within %" PRIu32 " timeout", timeout);
|
||||
return ESP_FAIL;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user