fix(websocket): Cleaned up printf/format warnings (-Wno-format)

This commit is contained in:
David Cermak
2023-05-17 07:35:21 +02:00
parent c974c14220
commit e085826dbb
4 changed files with 2 additions and 4 deletions

View File

@@ -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;
}