Commit 72cf8dd8 authored by Max Kellermann's avatar Max Kellermann

ZeroconfBonjour: fix OnSocketReady() return type

parent 3c2b464d
...@@ -47,8 +47,9 @@ public: ...@@ -47,8 +47,9 @@ public:
} }
protected: protected:
virtual void OnSocketReady(gcc_unused unsigned flags) override { virtual bool OnSocketReady(gcc_unused unsigned flags) override {
DNSServiceProcessResult(service_ref); DNSServiceProcessResult(service_ref);
return false;
} }
}; };
......
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