jc*huff.c: Consistify preproc directive formatting

The rest of the libjpeg API code uses "#if defined(condition)" rather
than "#if defined condition".
This commit is contained in:
DRC
2019-10-16 21:16:43 -05:00
parent ab6c4a5db1
commit 74aeaddf8e
2 changed files with 4 additions and 4 deletions

View File

@@ -52,8 +52,8 @@
*/
/* NOTE: Both GCC and Clang define __GNUC__ */
#if defined __GNUC__ && (defined __arm__ || defined __aarch64__)
#if !defined __thumb__ || defined __thumb2__
#if defined(__GNUC__) && (defined(__arm__) || defined(__aarch64__))
#if !defined(__thumb__) || defined(__thumb2__)
#define USE_CLZ_INTRINSIC
#endif
#endif