diff --git a/src/AsyncWebSocket.cpp b/src/AsyncWebSocket.cpp index 12a89cb..ebb0943 100644 --- a/src/AsyncWebSocket.cpp +++ b/src/AsyncWebSocket.cpp @@ -798,7 +798,7 @@ void AsyncWebSocketClient::binary(const __FlashStringHelper *data, size_t len) IPAddress AsyncWebSocketClient::remoteIP() const { if (!_client) - return IPAddress(0U); + return IPAddress(0UL); return _client->remoteIP(); }