]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-6848 #resolve #comment slight tweak to fix the logic and avoid unbalanced parens
authorKen Rice <krice@freeswitch.org>
Wed, 19 Nov 2014 22:05:40 +0000 (16:05 -0600)
committerKen Rice <krice@freeswitch.org>
Wed, 19 Nov 2014 22:06:17 +0000 (16:06 -0600)
libs/apr/include/apr_general.h

index b8c4eec7bd48b75bfe717aae30d51dcd594f07d7..42eec83ce456bccbdbaa11190ed279f1c73d881d 100644 (file)
@@ -76,7 +76,7 @@ typedef int               apr_signum_t;
  * @return offset
  */
 
-#if defined(CRAY) || (defined(__arm) && !defined(LINUX) || defined(__FreeBSD__)))
+#if defined(CRAY) || (defined(__arm) && !(defined(LINUX) || defined(__FreeBSD__)))
 #ifdef __STDC__
 #define APR_OFFSET(p_type,field) _Offsetof(p_type,field)
 #else