1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:27:35 +00:00

LibCore: Oops, fix infinite recursion in LogStream << CSocketAddress.

This commit is contained in:
Andreas Kling 2019-07-14 14:24:37 +02:00
parent 3073ea7d84
commit 4c0c93ce09

View file

@ -49,5 +49,5 @@ private:
inline const LogStream& operator<<(const LogStream& stream, const CSocketAddress& value)
{
return stream << value;
return stream << value.to_string();
}