From: DRC Date: Fri, 23 Mar 2018 15:41:07 +0000 (-0500) Subject: jcphuff.c: Fix compiler warning X-Git-Tag: 1.5.90~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3fa69b4d6164242c2743bc96bf73b5d8c426133e;p=libjpeg-turbo jcphuff.c: Fix compiler warning Misleading indentation, introduced by 5b177b3cab5cfb661256c1e74df160158ec6c34e --- diff --git a/jcphuff.c b/jcphuff.c index b9a8de3..024d3af 100644 --- a/jcphuff.c +++ b/jcphuff.c @@ -215,10 +215,10 @@ start_pass_phuff(j_compress_ptr cinfo, boolean gather_statistics) entropy->pub.encode_mcu = encode_mcu_DC_first; else entropy->pub.encode_mcu = encode_mcu_AC_first; - if (jsimd_can_encode_mcu_AC_first_prepare()) - entropy->AC_first_prepare = jsimd_encode_mcu_AC_first_prepare; - else - entropy->AC_first_prepare = encode_mcu_AC_first_prepare; + if (jsimd_can_encode_mcu_AC_first_prepare()) + entropy->AC_first_prepare = jsimd_encode_mcu_AC_first_prepare; + else + entropy->AC_first_prepare = encode_mcu_AC_first_prepare; } else { if (is_DC_band) entropy->pub.encode_mcu = encode_mcu_DC_refine;