From 7ccdb734c2805bddb64bddb6e73de3c88f09e4ad Mon Sep 17 00:00:00 2001 From: Pascal Massimino Date: Thu, 18 Feb 2016 15:14:41 +0100 Subject: [PATCH] fix indentation after patch #328220 Change-Id: Iccfcf4deaed6b383b9f80ae84b5b0575a4e94b5f --- src/dec/webp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dec/webp.c b/src/dec/webp.c index b6ed9c9a..eb925a86 100644 --- a/src/dec/webp.c +++ b/src/dec/webp.c @@ -513,9 +513,9 @@ static VP8StatusCode DecodeInto(const uint8_t* const data, size_t data_size, if (status != VP8_STATUS_OK) { WebPFreeDecBuffer(params->output); } else { - if (params->options != NULL && params->options->flip) { - status = WebPFlipBuffer(params->output); - } + if (params->options != NULL && params->options->flip) { + status = WebPFlipBuffer(params->output); + } } return status; }