summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-02-02 15:43:42 +0100
committerCarl Hetherington <cth@carlh.net>2025-10-16 19:25:45 +0200
commitc544d6bbaf65bdf20ec308239d66b21315f829cc (patch)
treeb33d18e999bbb28d8481cf91bb5a8ff8f67f0d72 /src/lib
parent801133d5d7b0b66aa4ece0f0ad2bfe2a55b740de (diff)
Missing parameter name.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/server.h b/src/lib/server.h
index 5025a2760..9fe3eaa16 100644
--- a/src/lib/server.h
+++ b/src/lib/server.h
@@ -53,7 +53,7 @@ private:
virtual void handle (std::shared_ptr<Socket> socket) = 0;
void start_accept ();
- void handle_accept (std::shared_ptr<Socket>, boost::system::error_code const &);
+ void handle_accept(std::shared_ptr<Socket> socket, boost::system::error_code const &);
dcpomatic::io_context _io_context;
boost::asio::ip::tcp::acceptor _acceptor;