From 701fd1d93944d328b958d8e81e2c664ee60fb067 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 20 Jan 2019 20:59:43 +0100 Subject: [PATCH] net/IPv4Address: fix comment typo --- src/net/IPv4Address.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/IPv4Address.hxx b/src/net/IPv4Address.hxx index f77dfe77e..c2474d8fe 100644 --- a/src/net/IPv4Address.hxx +++ b/src/net/IPv4Address.hxx @@ -163,7 +163,7 @@ public: */ static constexpr const IPv4Address &Cast(const SocketAddress &src) noexcept { /* this reinterpret_cast works because this class is - just a wrapper for struct sockaddr_in6 */ + just a wrapper for struct sockaddr_in */ return *(const IPv4Address *)(const void *)src.GetAddress(); }