Skip to content

Commit 4b07181

Browse files
ci(pre-commit): Apply automatic fixes
1 parent fb3097e commit 4b07181

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/AsyncWebSocket.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,9 @@ void AsyncWebSocketClient::_onData(void *pbuf, size_t plen) {
565565
uint8_t *data = (uint8_t *)pbuf;
566566

567567
while (plen > 0) {
568-
async_ws_log_v("WS[%" PRIu32 "] _onData: plen: %" PRIu32 ", _pstate: %" PRIu8 ", _status: %" PRIu8, _clientId, plen, _pstate, static_cast<uint8_t>(_status));
568+
async_ws_log_v(
569+
"WS[%" PRIu32 "] _onData: plen: %" PRIu32 ", _pstate: %" PRIu8 ", _status: %" PRIu8, _clientId, plen, _pstate, static_cast<uint8_t>(_status)
570+
);
569571

570572
if (_pstate == STATE_FRAME_START) {
571573
const uint8_t *fdata = data;

0 commit comments

Comments
 (0)