diff options
author | mosu <mosu@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-01-15 11:16:33 +0000 |
---|---|---|
committer | mosu <mosu@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-01-15 11:16:33 +0000 |
commit | 23486f48a5034b3a25be6ced6cdba9a86131e1f0 (patch) | |
tree | 3b07f204def7bd2f0c7139f4d04e2d65301a949b /libmpeg2 | |
parent | 4ee359e3664ed23d50a59db84d8d180debe94bef (diff) |
bunkus: Encapsulated arguments to #define in ( ... ) so that the #defines can be safely used like functions: mydef(flag ? val1 : val2)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8958 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpeg2')
-rw-r--r-- | libmpeg2/attributes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpeg2/attributes.h b/libmpeg2/attributes.h index 3e14cab271..ab7105c2df 100644 --- a/libmpeg2/attributes.h +++ b/libmpeg2/attributes.h @@ -21,7 +21,7 @@ /* use gcc attribs to align critical data structures */ #ifdef ATTRIBUTE_ALIGNED_MAX -#define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < align) ? ATTRIBUTE_ALIGNED_MAX : align))) +#define ATTR_ALIGN(align) __attribute__ ((__aligned__ ((ATTRIBUTE_ALIGNED_MAX < (align)) ? ATTRIBUTE_ALIGNED_MAX : (align)))) #else #define ATTR_ALIGN(align) #endif |