From patchwork Sat Dec 30 16:29:08 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 19354 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 72BE9BE175 for ; Sat, 30 Dec 2023 16:29:38 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 4D32E62B64; Sat, 30 Dec 2023 17:29:37 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1703953777; bh=jT0KPQWhn4IpHg9WXjtMDYPB0JLx18I5UCCMc6EvPug=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=HDOWb6UncHIPWPKv8drxrvedzlQSm/rQz6INUG5D8pY4X90F3nuyXdEIpoCPh5G0R gi9xve0CaZ/yHWeH3GbQpd6HMRyYjlfiPVqXc3kpf29t/mabGgD6KHEf+tdHVX2V0C bo0w/vKED6rbURTf4yyqQ+yfqWPSxeDHesjhPueJ6zk/lth5SY7pI1XcF/ktGa2udS zo7a+DIYTa7TEY4vfseQGKyUDODwZQyG+Gqaj3DjWxf9OnY2/g/P7jEwbzxYk12lPG UbGStBFhTJjM7wsfxpU8DXa/8uOUvM7sKWzA8WBtZLrwMV4yjCK/C3VL2tRP4xrmUC lUeB6P27nGhYg== 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 E162E62B4A for ; Sat, 30 Dec 2023 17:29:32 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="R7+sGElc"; dkim-atps=neutral Received: from localhost.localdomain (93-61-96-190.ip145.fastwebnet.it [93.61.96.190]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 8A792842; Sat, 30 Dec 2023 17:28:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1703953715; bh=jT0KPQWhn4IpHg9WXjtMDYPB0JLx18I5UCCMc6EvPug=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=R7+sGElc6Tbz6ZZ82yk7b4noS+DIWB+wq0OzCJnaXvghjBVYbIMS4WU3OY70m9qi9 x69xU8kL6J4RafwF41z1Rco1EsJZXowY69+MNcZI6dE+xN4oMMYRfp0b9YMrS+Hih3 KqZmPjzmVcHYzLnC+VMhaJpOBV11cZU0hScVFGtQ= To: libcamera-devel@lists.libcamera.org Date: Sat, 30 Dec 2023 17:29:08 +0100 Message-ID: <20231230162912.827669-4-jacopo.mondi@ideasonboard.com> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20231230162912.827669-1-jacopo.mondi@ideasonboard.com> References: <20231230162912.827669-1-jacopo.mondi@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 3/7] apps: lc-compliance: Fix typo in comment 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: , X-Patchwork-Original-From: Jacopo Mondi via libcamera-devel From: Jacopo Mondi Reply-To: Jacopo Mondi Cc: Jacopo Mondi Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Fix a small typo in a comment. Signed-off-by: Jacopo Mondi Reviewed-by: Paul Elder Reviewed-by: Kieran Bingham --- src/apps/lc-compliance/simple_capture.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/lc-compliance/simple_capture.cpp b/src/apps/lc-compliance/simple_capture.cpp index e22a339c4e1c..545b444c2593 100644 --- a/src/apps/lc-compliance/simple_capture.cpp +++ b/src/apps/lc-compliance/simple_capture.cpp @@ -95,7 +95,7 @@ void SimpleCaptureBalanced::capture(unsigned int numRequests) captureCount_ = 0; captureLimit_ = numRequests; - /* Queue the recommended number of reqeuests. */ + /* Queue the recommended number of requests. */ for (const std::unique_ptr &buffer : buffers) { std::unique_ptr request = camera_->createRequest(); ASSERT_TRUE(request) << "Can't create request"; @@ -158,7 +158,7 @@ void SimpleCaptureUnbalanced::capture(unsigned int numRequests) captureCount_ = 0; captureLimit_ = numRequests; - /* Queue the recommended number of reqeuests. */ + /* Queue the recommended number of requests. */ for (const std::unique_ptr &buffer : buffers) { std::unique_ptr request = camera_->createRequest(); ASSERT_TRUE(request) << "Can't create request";