From f5698ed541a424befa7258ecb459ec44e406fdb5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niklas=20S=C3=B6derlund?= <niklas.soderlund@ragnatech.se>
Date: Sun, 3 May 2020 00:01:13 +0200
Subject: qcam: dng_writer: Remove colon from \todo
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Todo statements should not end with a colon, remove it.

Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 src/qcam/dng_writer.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src/qcam')

diff --git a/src/qcam/dng_writer.cpp b/src/qcam/dng_writer.cpp
index bc1a63e6..ea4616f6 100644
--- a/src/qcam/dng_writer.cpp
+++ b/src/qcam/dng_writer.cpp
@@ -54,7 +54,7 @@ void packScanlineSBGGR12P(void *output, const void *input, unsigned int width)
 	const uint8_t *in = static_cast<const uint8_t *>(input);
 	uint8_t *out = static_cast<uint8_t *>(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;
-- 
cgit v1.2.1