Commit 9b9522e3 authored by Max Kellermann's avatar Max Kellermann

zeroconf/avahi/Poll: rename internal variables

parent 87963685
......@@ -56,8 +56,8 @@ public:
}
static void WatchUpdate(AvahiWatch *w,
AvahiWatchEvent event) noexcept {
w->event.Schedule(FromAvahiWatchEvent(event));
AvahiWatchEvent _event) noexcept {
w->event.Schedule(FromAvahiWatchEvent(_event));
}
static AvahiWatchEvent WatchGetEvents(AvahiWatch *w) noexcept {
......@@ -69,8 +69,8 @@ public:
}
private:
void OnSocketReady(unsigned flags) noexcept {
received = ToAvahiWatchEvent(flags);
void OnSocketReady(unsigned events) noexcept {
received = ToAvahiWatchEvent(events);
callback(this, event.GetSocket().Get(), received, userdata);
received = AvahiWatchEvent(0);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment