Skip to content
This repository was archived by the owner on Jan 21, 2025. It is now read-only.

Commit dc17f5c

Browse files
committed
FIx ambiguity with IPAddress(0U)
1 parent 670466d commit dc17f5c

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
@@ -798,7 +798,7 @@ void AsyncWebSocketClient::binary(const __FlashStringHelper *data, size_t len)
798798
IPAddress AsyncWebSocketClient::remoteIP() const
799799
{
800800
if (!_client)
801-
return IPAddress(0U);
801+
return IPAddress((uint32_t)0U);
802802

803803
return _client->remoteIP();
804804
}

0 commit comments

Comments
 (0)