From 33aa4ce6dcb3a1ee51b75386a50a7ce2b47d30ef Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 19 Feb 2024 20:33:13 +0100 Subject: [PATCH] net/SocketError: fix typo Whoops. This function has never been used. --- src/net/SocketError.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/SocketError.hxx b/src/net/SocketError.hxx index c45de845..4c4ab9d8 100644 --- a/src/net/SocketError.hxx +++ b/src/net/SocketError.hxx @@ -101,7 +101,7 @@ IsSocketErrorAcceptWouldBlock(socket_error_t code) noexcept } constexpr bool -IsSocketErrorInterruped(socket_error_t code) noexcept +IsSocketErrorInterrupted(socket_error_t code) noexcept { #ifdef _WIN32 return code == WSAEINTR;