ofi: fix Events() signature

This commit is contained in:
Alexey Rybalchenko 2021-05-07 14:12:19 +02:00
parent 6e567ba496
commit b31c64a871
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ class Socket final : public fair::mq::Socket
auto GetId() const -> std::string override { return fId; }
auto Events(uint32_t *events) -> void override { *events = 0; }
auto Events(uint32_t *events) -> int override { *events = 0; }
auto Bind(const std::string& address) -> bool override;
auto Connect(const std::string& address) -> bool override;

View File

@ -410,7 +410,7 @@ class Manager
}
fRegionEventsShmCV.notify_all();
} catch(std::out_of_range& oor) {
LOG(debug) << "RemoveRegion() could not locate region with id'" << id << "'";
LOG(debug) << "RemoveRegion() could not locate region with id '" << id << "'";
}
fRegionsGen += 1; // signal TL cache invalidation
}