libcamera: event_dispatcher_poll: Fix trivial spelling

Correct the spelling of 'notifiers'.

Fixes: 8356f8a6ab ("libcamera: Add a poll-based event dispatcher")
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Kieran Bingham 2019-01-17 14:03:42 +00:00
parent d67841a990
commit e399a0745b

View file

@ -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) {