aboutsummaryrefslogtreecommitdiff
path: root/source/rotate.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/rotate.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/rotate.cc')
-rw-r--r--source/rotate.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/rotate.cc b/source/rotate.cc
index ceec134d..f2bed85b 100644
--- a/source/rotate.cc
+++ b/source/rotate.cc
@@ -314,8 +314,8 @@ void RotateUV180(const uint8_t* src,
int width,
int height) {
int i;
- void (*MirrorUVRow)(const uint8_t* src, uint8_t* dst_u, uint8_t* dst_v, int width) =
- MirrorUVRow_C;
+ void (*MirrorUVRow)(const uint8_t* src, uint8_t* dst_u, uint8_t* dst_v,
+ int width) = MirrorUVRow_C;
#if defined(HAS_MIRRORUVROW_NEON)
if (TestCpuFlag(kCpuHasNEON) && IS_ALIGNED(width, 8)) {
MirrorUVRow = MirrorUVRow_NEON;