diff --git a/Kernel/Net/LocalSocket.h b/Kernel/Net/LocalSocket.h index fb47364f12..b764a6a117 100644 --- a/Kernel/Net/LocalSocket.h +++ b/Kernel/Net/LocalSocket.h @@ -25,6 +25,7 @@ public: private: explicit LocalSocket(int type); + virtual const char* class_name() const override { return "LocalSocket"; } virtual bool is_local() const override { return true; } bool has_attached_peer(const FileDescription&) const;