Fixed style bugs in previous commit.

This commit is contained in:
Bruce Evans 2001-10-15 04:29:06 +00:00
parent 987de8a0d2
commit 18ca70d12d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84962

View file

@ -71,21 +71,21 @@ static const char rcsid[] =
#define FLOATING_POINT
union arg {
int intarg;
unsigned int uintarg;
long longarg;
unsigned long ulongarg;
quad_t quadarg;
u_quad_t uquadarg;
void *pvoidarg;
char *pchararg;
short *pshortarg;
int *pintarg;
long *plongarg;
quad_t *pquadarg;
int intarg;
u_int uintarg;
long longarg;
u_long ulongarg;
quad_t quadarg;
u_quad_t uquadarg;
void *pvoidarg;
char *pchararg;
short *pshortarg;
int *pintarg;
long *plongarg;
quad_t *pquadarg;
#ifdef FLOATING_POINT
double doublearg;
long double longdoublearg;
double doublearg;
long double longdoublearg;
#endif
};
@ -931,7 +931,7 @@ number: if ((dprec = prec) >= 0)
* It will be replaces with a malloc-ed one if it overflows.
*/
static void
__find_arguments (const char *fmt0, va_list ap, union arg **argtable)
__find_arguments (const char *fmt0, va_list ap, union arg **argtable)
{
char *fmt; /* format string */
int ch; /* character from fmt */