aboutsummaryrefslogtreecommitdiff
path: root/source/convert_from.cc
diff options
context:
space:
mode:
authorFrank Barchard <fbarchard@google.com>2018-01-24 10:52:17 -0800
committerFrank Barchard <fbarchard@chromium.org>2018-01-24 19:16:03 +0000
commit92e22cf5b66173d5d5056751ca62bc2254e4ff86 (patch)
treee0ebfda4deeeb99b670fd59841a41c42fcab1252 /source/convert_from.cc
parentf1c53450468b141aa31b51dadaa8023c397d639f (diff)
downloadlibyuv-92e22cf5b66173d5d5056751ca62bc2254e4ff86.tar.gz
Lint cleanup after C99 change CL
TBR=braveyao@chromium.org Bug: libyuv:774 Test: git cl lint Change-Id: I51cf8107a8db17fbc9952d610f3e4d7aac5aa743 Reviewed-on: https://chromium-review.googlesource.com/882217 Reviewed-by: Frank Barchard <fbarchard@chromium.org>
Diffstat (limited to 'source/convert_from.cc')
-rw-r--r--source/convert_from.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/convert_from.cc b/source/convert_from.cc
index 0a38a27c..eb463135 100644
--- a/source/convert_from.cc
+++ b/source/convert_from.cc
@@ -1123,7 +1123,7 @@ int I420ToRGB565Dither(const uint8_t* src_y,
I422ToARGBRow(src_y, src_u, src_v, row_argb, &kYuvI601Constants, width);
ARGBToRGB565DitherRow(row_argb, dst_rgb565,
*(uint32_t*)(dither4x4 + ((y & 3) << 2)), // NOLINT
- width); // NOLINT
+ width); // NOLINT
dst_rgb565 += dst_stride_rgb565;
src_y += src_stride_y;
if (y & 1) {