Fix format specifiers

This commit is contained in:
chemicstry
2018-05-10 01:16:39 +03:00
parent 02e0128802
commit ac8d806085
2 changed files with 7 additions and 7 deletions

View File

@ -533,7 +533,7 @@ void WebSocketsClient::sendHeader(WSclient_t * client) {
client->tcp->readStringUntil('\n', &(client->cHttpLine), std::bind(&WebSocketsClient::handleHeader, this, client, &(client->cHttpLine)));
#endif
DEBUG_WEBSOCKETS("[WS-Client][sendHeader] sending header... Done (%uus).\n", (micros() - start));
DEBUG_WEBSOCKETS("[WS-Client][sendHeader] sending header... Done (%luus).\n", (micros() - start));
}