diff options
author | Max Kellermann <max@musicpd.org> | 2017-11-10 20:34:45 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-11-10 20:34:45 +0100 |
commit | 7e16ac305d403e640a540fe8ebf00f14b8d32b22 (patch) | |
tree | d6726c5e9bc66785f8b28fc6bcf55529edfe791b /src/zeroconf | |
parent | 59a88369243ee74a28c38054c85e779883b6e32f (diff) |
event/SocketMonitor: rename Get() to GetSocket()
Diffstat (limited to 'src/zeroconf')
-rw-r--r-- | src/zeroconf/AvahiPoll.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zeroconf/AvahiPoll.cxx b/src/zeroconf/AvahiPoll.cxx index d7c117711..70fa8d4e1 100644 --- a/src/zeroconf/AvahiPoll.cxx +++ b/src/zeroconf/AvahiPoll.cxx @@ -73,7 +73,7 @@ private: /* virtual methods from class SocketMonitor */ bool OnSocketReady(unsigned flags) noexcept { received = ToAvahiWatchEvent(flags); - callback(this, Get().Get(), received, userdata); + callback(this, GetSocket().Get(), received, userdata); received = AvahiWatchEvent(0); return true; } |