From patchwork Fri Oct 18 07:17:06 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Elder X-Patchwork-Id: 21663 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 06F23C32FE for ; Fri, 18 Oct 2024 07:17:19 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id F1C8F65387; Fri, 18 Oct 2024 09:17:17 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="RQPXBl6c"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 6004265379 for ; Fri, 18 Oct 2024 09:17:16 +0200 (CEST) Received: from neptunite.flets-east.jp (unknown [IPv6:2404:7a81:160:2100:d718:41c2:8e74:1bd2]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 9A7E759C; Fri, 18 Oct 2024 09:15:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1729235732; bh=0diDzKTQhHiBqxuKu5STOdm7DlLMPiLm8dzWEbQiqCM=; h=From:To:Cc:Subject:Date:From; b=RQPXBl6cYizF5YP2JS6wlIyD1XlSW2waw7GWNjCxpV//xnOH5Y5n8ctH/1+N7PGCJ X4Ff3LLT2lNCEp3QQ+njBaC8LkNPfNK07kg1w4tVHDjZD467Q0t0tPUCAIJEu13ISi wTu2Kaufidyi1MhIvgp1GEL6h+1pZlsYTs4D9S+M= From: Paul Elder To: libcamera-devel@lists.libcamera.org Cc: Paul Elder Subject: [PATCH] libcamera: MappedFrameBuffer: Fix typo in comment formatting Date: Fri, 18 Oct 2024 16:17:06 +0900 Message-Id: <20241018071706.1217768-1-paul.elder@ideasonboard.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 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" Fix typo in comment block formatting. Signed-off-by: Paul Elder Reviewed-by: Kieran Bingham --- src/libcamera/mapped_framebuffer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/mapped_framebuffer.cpp b/src/libcamera/mapped_framebuffer.cpp index ad82e1f6e49c..f54bbf21f109 100644 --- a/src/libcamera/mapped_framebuffer.cpp +++ b/src/libcamera/mapped_framebuffer.cpp @@ -72,7 +72,7 @@ MappedBuffer::MappedBuffer(MappedBuffer &&other) /** * \brief Move assignment operator, replace the mappings with those of \a other -* \param[in] other The other MappedBuffer + * \param[in] other The other MappedBuffer * * Moving a MappedBuffer moves the mappings contained in the \a other to the new * MappedBuffer and invalidates the \a other.