FS-6533: --resolve fix gcc 4.9 warning due to useless right-hand operand of comma expression

This commit is contained in:
Michael Jerris 2014-05-19 10:36:02 -05:00 committed by Brian West
parent ea78f4d0e8
commit f683ac2165
1 changed files with 2 additions and 2 deletions

View File

@ -189,12 +189,12 @@ typedef struct {
* @hideinitializer
*/
#if SU_HAVE_TAGSTACK
#define ta_end(ta) (va_end((ta).ap), (ta).tl->t_tag = NULL, 0)
#define ta_end(ta) (va_end((ta).ap), (ta).tl->t_tag = NULL)
#else
#define ta_end(ta) \
((((ta).tl[1].t_value) ? \
(tl_vfree((tagi_t *)((ta).tl[1].t_value))) : (void)0), \
(ta).tl[1].t_value = 0, va_end((ta).ap), 0)
(ta).tl[1].t_value = 0, va_end((ta).ap))
#endif
SOFIA_END_DECLS