From e399a0745b0c306757c8f7c38f5b2864d442db7e Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Thu, 17 Jan 2019 14:03:42 +0000 Subject: 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 Signed-off-by: Kieran Bingham --- src/libcamera/event_dispatcher_poll.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libcamera/event_dispatcher_poll.cpp') 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) { -- cgit v1.2.1