From 8a975ff6302e4e7488da3dfb23519faedccc59c3 Mon Sep 17 00:00:00 2001 From: Sergey Bugaev Date: Sat, 10 Aug 2019 18:53:33 +0300 Subject: [PATCH] Net: Override LocalSocket::class_name() --- Kernel/Net/LocalSocket.h | 1 + 1 file changed, 1 insertion(+) 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;