FS-6848 #resolve #comment slight tweak to fix the logic and avoid unbalanced parens

This commit is contained in:
Ken Rice 2014-11-19 16:05:40 -06:00
parent 74f243bc3b
commit c645ab3889
1 changed files with 1 additions and 1 deletions

View 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