Use FOO(a) for macros with variadic args, instead of FOO(a,) or FOO(a, ).

Submitted by:	gcc3.2
This commit is contained in:
Jake Burkholder 2002-09-02 02:30:20 +00:00
parent 4f4f7ac78c
commit ae162f3f31
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102831

View file

@ -135,10 +135,10 @@ _QP_TTOQ(ui, i, u_int, u_int, a[0])
_QP_TTOQ(ux, x, u_long, u_long, a[0])
_QP_QTOT(d, d, double, a)
_QP_QTOT(i, i, int, )
_QP_QTOT(s, s, float, )
_QP_QTOT(i, i, int)
_QP_QTOT(s, s, float)
_QP_QTOT(x, x, long, a)
_QP_QTOT(ui, i, u_int, )
_QP_QTOT(ui, i, u_int)
_QP_QTOT(ux, x, u_long, a)
_QP_CMP(eq, 0, FCC_EQ)