From patchwork Tue Dec 1 17:43:13 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 10533 X-Patchwork-Delegate: kieran.bingham@ideasonboard.com Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 85DA7BE177 for ; Tue, 1 Dec 2020 17:43:30 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 5107563502; Tue, 1 Dec 2020 18:43:30 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=uajain.com header.i=@uajain.com header.b="myZCWcRt"; dkim-atps=neutral Received: from mail.uajain.com (static.126.159.217.95.clients.your-server.de [95.217.159.126]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 2A71263509 for ; Tue, 1 Dec 2020 18:43:29 +0100 (CET) From: Umang Jain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=uajain.com; s=mail; t=1606844608; bh=caM5SnBep/wP84bssQFFv2A/cZXJygdFIpjrpebMaVg=; h=From:To:Cc:Subject:In-Reply-To:References; b=myZCWcRtul63DfbBzXy+sLzsYGmwr2ugqAzEujF/K2XGnV6x+MB42vx9IbCKVUXhs Kpf5It43lEFkyxTOauI6eor9fAZFSgb6sH88sQZ6z5MdanCcsy7JwLw6gnwhvcB6rK x88ADC9vf3hqkFC7+cmm2APdYAcxMw+MTaNVzqT9MtMobY1RQZnWjDmrLHzIlBRDQd oCsoRj97JZ8kRD87Atfjx0sYiVWaQW1ndaAFx+/uKpkm5WWCOJKN604+iOiRwOeWjo ad98yG3DpUN36JY/lPFq3f9Zn5lU5YH5GwGbyr1O5vdNd3WolmMreV6jyMfAQwx6Gp +VrxnldqfACQQ== To: libcamera-devel@lists.libcamera.org Date: Tue, 1 Dec 2020 23:13:13 +0530 Message-Id: <20201201174314.12774-4-email@uajain.com> In-Reply-To: <20201201174314.12774-1-email@uajain.com> References: <20201201174314.12774-1-email@uajain.com> Mime-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 3/4] simple-cam: Fix documentation typo X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Signed-off-by: Umang Jain Reviewed-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- simple-cam.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple-cam.cpp b/simple-cam.cpp index f844ff4..0e26895 100644 --- a/simple-cam.cpp +++ b/simple-cam.cpp @@ -319,7 +319,7 @@ int main() * Run an EventLoop * * In order to dispatch events received from the video devices, such - * as buffer completions, an even loop as to be run. + * as buffer completions, an event loop has to be run. * * Libcamera provides its own default event dispatcher realized by * polling a set of file descriptors, but applications can integrate