From patchwork Thu Jan 17 20:20:43 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 261 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 48C8760CA7 for ; Thu, 17 Jan 2019 21:20:50 +0100 (CET) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id DA56B53E; Thu, 17 Jan 2019 21:20:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1547756450; bh=taH8XZ+Akjmc/XaapHImI4FqH2AEX70rZxb043cKytg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ecGsyjfc3z9nd8KGpAkM0V0Ot/KsrhcCnSOQzH/nwIWTpj6bdUvT1Vbww6Mde6ROS tBYKFuHhveaZzLWHAIVFKKz/0jChl0T1gdzPhEVcKVKOnjlkE9r8oi1SvyQf26lPDq VjYOdgcitToODL/d20T92LadIeIwLwkZJ7ayXskg= From: Kieran Bingham To: LibCamera Devel Date: Thu, 17 Jan 2019 20:20:43 +0000 Message-Id: <20190117202043.21420-6-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190117202043.21420-1-kieran.bingham@ideasonboard.com> References: <20190117202043.21420-1-kieran.bingham@ideasonboard.com> Subject: [libcamera-devel] [PATCH 5/5] libcamera: event_dispatcher_poll: Fix trivial spelling X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Jan 2019 20:20:50 -0000 Correct the spelling of 'notifiers'. Fixes: 8356f8a6ab87 ("libcamera: Add a poll-based event dispatcher") Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- src/libcamera/event_dispatcher_poll.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/event_dispatcher_poll.cpp b/src/libcamera/event_dispatcher_poll.cpp index 69edfcbf2725..2072ae0aa3da 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) {