From patchwork Fri Dec 4 06:54:51 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Umang Jain X-Patchwork-Id: 10555 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 3687BBE177 for ; Fri, 4 Dec 2020 06:55:09 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 042FE635DC; Fri, 4 Dec 2020 07:55:09 +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="DIJqdn4Q"; 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 539A9635C4 for ; Fri, 4 Dec 2020 07:55:08 +0100 (CET) From: Umang Jain DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=uajain.com; s=mail; t=1607064907; bh=iZUfMY9iUuBNpfAav9Jl9QuWu1l9Ak5OlVgGPaJ3CPA=; h=From:To:Cc:Subject:In-Reply-To:References; b=DIJqdn4Q6u1cz99rDlt1P8uCEi4n9H3H+j+F4l0mPhe+hLjNwIW4Xz+JFM6vbu/sr 0eRga9G8x2Zj8Cljp4ghV1FQ8XyzpbPDrFWbdEFJ+tSLdjBnOJO1y+vmoRQdvcFKPS gZYW4aaLCQHDCerSXjJl+FxXObh6FOmwxITZPh4SZLAGeKbc/umqqzvtBJUYadwiPd beclxz09zTJI8SjpsfcKlum+LCbz9Vex7y+PJ8i9L0WG8TUSgzI7hgPXBAXkW3gcJZ Bx2zqCvAxyhXpl9Jtrr98LEqNNCywzmflyOVXXCty7swpuCx/tYrYBWykA7MdaIOmF fTDfKT6xiMQWQ== To: libcamera-devel@lists.libcamera.org Date: Fri, 4 Dec 2020 12:24:51 +0530 Message-Id: <20201204065452.2764628-4-email@uajain.com> In-Reply-To: <20201204065452.2764628-1-email@uajain.com> References: <20201204065452.2764628-1-email@uajain.com> Mime-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 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 aace5c8..bfe30d7 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