aboutsummaryrefslogtreecommitdiff
path: root/source/scale_common.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/scale_common.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/scale_common.cc')
-rw-r--r--source/scale_common.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/scale_common.cc b/source/scale_common.cc
index 5d9b5797..b28d7da4 100644
--- a/source/scale_common.cc
+++ b/source/scale_common.cc
@@ -758,7 +758,9 @@ void ScaleAddRow_C(const uint8_t* src_ptr, uint16_t* dst_ptr, int src_width) {
}
}
-void ScaleAddRow_16_C(const uint16_t* src_ptr, uint32_t* dst_ptr, int src_width) {
+void ScaleAddRow_16_C(const uint16_t* src_ptr,
+ uint32_t* dst_ptr,
+ int src_width) {
int x;
assert(src_width > 0);
for (x = 0; x < src_width - 1; x += 2) {