From patchwork Sun May 3 00:27:23 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Niklas_S=C3=B6derlund?= X-Patchwork-Id: 3677 Return-Path: Received: from vsp-unauthed02.binero.net (vsp-unauthed02.binero.net [195.74.38.227]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id C5D7E603F4 for ; Sun, 3 May 2020 02:27:30 +0200 (CEST) X-Halon-ID: da0f2b19-8cd4-11ea-89d0-0050569116f7 Authorized-sender: niklas@soderlund.pp.se Received: from bismarck.berto.se (p4fca2392.dip0.t-ipconnect.de [79.202.35.146]) by bin-vsp-out-03.atm.binero.net (Halon) with ESMTPA id da0f2b19-8cd4-11ea-89d0-0050569116f7; Sun, 03 May 2020 02:27:25 +0200 (CEST) From: =?utf-8?q?Niklas_S=C3=B6derlund?= To: libcamera-devel@lists.libcamera.org Date: Sun, 3 May 2020 02:27:23 +0200 Message-Id: <20200503002723.1367196-1-niklas.soderlund@ragnatech.se> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] qcam: dng_writer: Remove colon from \todo 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-List-Received-Date: Sun, 03 May 2020 00:27:31 -0000 Todo statements should not end with a colon, remove it. Signed-off-by: Niklas Söderlund Reviewed-by: Laurent Pinchart --- src/qcam/dng_writer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qcam/dng_writer.cpp b/src/qcam/dng_writer.cpp index 7d51965dc2ea3201..f0d6f5f473e3d680 100644 --- a/src/qcam/dng_writer.cpp +++ b/src/qcam/dng_writer.cpp @@ -47,7 +47,7 @@ void packScanlineSBGGR12P(void *output, const void *input, unsigned int width) const uint8_t *in = static_cast(input); uint8_t *out = static_cast(output); - /* \todo: Can this be made more efficient? */ + /* \todo Can this be made more efficient? */ for (unsigned int i = 0; i < width; i += 2) { *out++ = in[0]; *out++ = (in[2] & 0x0f) << 4 | in[1] >> 4;