ZeroconfBonjour: fix OnSocketReady() return type

This commit is contained in:
Max Kellermann 2013-01-31 21:11:01 +01:00
parent 3c2b464dfa
commit 72cf8dd8a0
1 changed files with 2 additions and 1 deletions

View File

@ -47,8 +47,9 @@ public:
}
protected:
virtual void OnSocketReady(gcc_unused unsigned flags) override {
virtual bool OnSocketReady(gcc_unused unsigned flags) override {
DNSServiceProcessResult(service_ref);
return false;
}
};