diff options
Diffstat (limited to 'src/cam/event_loop.cpp')
-rw-r--r-- | src/cam/event_loop.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cam/event_loop.cpp b/src/cam/event_loop.cpp index e25784c0..2e3ce995 100644 --- a/src/cam/event_loop.cpp +++ b/src/cam/event_loop.cpp @@ -60,8 +60,8 @@ void EventLoop::callLater(const std::function<void()> &func) event_base_once(base_, -1, EV_TIMEOUT, dispatchCallback, this, nullptr); } -void EventLoop::addEvent(int fd, EventType type, - const std::function<void()> &callback) +void EventLoop::addFdEvent(int fd, EventType type, + const std::function<void()> &callback) { std::unique_ptr<Event> event = std::make_unique<Event>(callback); short events = (type & Read ? EV_READ : 0) |