diff options
author | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2020-05-03 00:01:13 +0200 |
---|---|---|
committer | Niklas Söderlund <niklas.soderlund@ragnatech.se> | 2020-05-03 03:35:16 +0200 |
commit | f5698ed541a424befa7258ecb459ec44e406fdb5 (patch) | |
tree | 2cd91ccf5ad5bf961a712223e43061702324791d /src | |
parent | 2223579dfee2b40c5a483f087949a1ee3d49cd60 (diff) |
qcam: dng_writer: Remove colon from \todo
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>
Diffstat (limited to 'src')
-rw-r--r-- | src/qcam/dng_writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |