From 70e72e84212f5b6b15f2e1a2b2d95d1d67abac7f Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Tue, 27 Aug 2019 08:30:20 +0200 Subject: Make InputBase::open() return void --- src/input/Zmq.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/input/Zmq.cpp') diff --git a/src/input/Zmq.cpp b/src/input/Zmq.cpp index 2e35907..ce7f439 100644 --- a/src/input/Zmq.cpp +++ b/src/input/Zmq.cpp @@ -220,7 +220,7 @@ void ZmqBase::rebind() } } -int ZmqBase::open(const std::string& inputUri) +void ZmqBase::open(const std::string& inputUri) { m_inputUri = inputUri; @@ -229,8 +229,6 @@ int ZmqBase::open(const std::string& inputUri) // We want to appear in the statistics ! m_stats.registerAtServer(); - - return 0; } int ZmqBase::close() -- cgit v1.2.3