Skip to content

Commit 209152a

Browse files
committed
src/AsyncWebSocket.cpp fix build error for esp32-c3
still waiting for this PR me-no-dev#970
1 parent f71e3d4 commit 209152a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AsyncWebSocket.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ void AsyncWebSocketClient::binary(AsyncWebSocketMessageBuffer * buffer)
829829

830830
IPAddress AsyncWebSocketClient::remoteIP() {
831831
if(!_client) {
832-
return IPAddress(0U);
832+
return IPAddress((uint32_t)0);
833833
}
834834
return _client->remoteIP();
835835
}

0 commit comments

Comments
 (0)