From patchwork Thu Sep 24 14:18:03 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 9788 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 B5B88C3B5C for ; Thu, 24 Sep 2020 14:18:14 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 835DF62FEB; Thu, 24 Sep 2020 16:18:14 +0200 (CEST) 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="usaLi4TW"; 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 4570762FDA for ; Thu, 24 Sep 2020 16:18:12 +0200 (CEST) From: Umang Jain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=uajain.com; s=mail; t=1600957091; bh=PAQ3YSO4ij53ZEn9EKobxSVh3DhVb6Ym6Z7pQ6yPEMA=; h=From:To:Cc:Subject:In-Reply-To:References; b=usaLi4TW6RYLA+WNV7AelCgjxjJnTo1Fzu4Zt+XgmkBKKmlkxV9y7ZMfrZon/JdSo PedgyZnE/jA8lSlFo+3yMHe16ExctMuH6gzE6c8b4/NMPxJWYzLr6G1EDRTALed/WW 20gSkGSM5OYaBGqM7B0BtNXvepf0qmYj0jKQ7kH5vxWjjjRHgC/ey2ucyjlQmfn2iG ErGpIxR38aSUXqjqu57fpoGwwy8G0Tcho2Zvc+CjWLBJv2rgfC/JJEHstYghK4JlYg ZFhILdg+iL756trnXNIfFMWEacnYEKOq7B4SECYlZHa06GIMNKk8S1WIIvcRkY/cdL O4C54xbA5umRA== To: libcamera-devel@lists.libcamera.org Date: Thu, 24 Sep 2020 19:48:03 +0530 Message-Id: <20200924141803.76422-2-email@uajain.com> In-Reply-To: <20200924141803.76422-1-email@uajain.com> References: <20200924141803.76422-1-email@uajain.com> Mime-Version: 1.0 Subject: [libcamera-devel] [PATCH 2/2] 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: Kieran Bingham --- simple-cam.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simple-cam.cpp b/simple-cam.cpp index d51000c..5b056b9 100644 --- a/simple-cam.cpp +++ b/simple-cam.cpp @@ -338,7 +338,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