summaryrefslogtreecommitdiff
path: root/src/libcamera/event_dispatcher_poll.cpp
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2019-01-17 14:03:42 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2019-01-17 21:31:33 +0000
commite399a0745b0c306757c8f7c38f5b2864d442db7e (patch)
tree9c5f26abcdc0aab16e32e74c34d410e10a640841 /src/libcamera/event_dispatcher_poll.cpp
parentd67841a9906935523bdb2b314e09a041091aa3ca (diff)
libcamera: event_dispatcher_poll: Fix trivial spelling
Correct the spelling of 'notifiers'. Fixes: 8356f8a6ab87 ("libcamera: Add a poll-based event dispatcher") Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/libcamera/event_dispatcher_poll.cpp')
-rw-r--r--src/libcamera/event_dispatcher_poll.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcamera/event_dispatcher_poll.cpp b/src/libcamera/event_dispatcher_poll.cpp
index 69edfcbf..2072ae0a 100644
--- a/src/libcamera/event_dispatcher_poll.cpp
+++ b/src/libcamera/event_dispatcher_poll.cpp
@@ -146,7 +146,7 @@ void EventDispatcherPoll::processEvents()
<< timeout.tv_nsec;
}
- /* Wait for events and process notifers and timers. */
+ /* Wait for events and process notifiers and timers. */
ret = ppoll(pollfds.data(), pollfds.size(),
nextTimer ? &timeout : nullptr, nullptr);
if (ret < 0) {