aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdio
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2001-10-15 04:29:06 +0000
committerBruce Evans <bde@FreeBSD.org>2001-10-15 04:29:06 +0000
commit18ca70d12d3802d2b3e0941d85c54e8686cf81af (patch)
tree22a66e9865f11d81ba8d2e1d52e6cbb372aa01b2 /lib/libc/stdio
parent987de8a0d2de85a297f1c84d62ad6d8e2f5c369c (diff)
Notes
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/vfprintf.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c
index 47434266e769..bc0e06e62da7 100644
--- a/lib/libc/stdio/vfprintf.c
+++ b/lib/libc/stdio/vfprintf.c
@@ -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 @@ error:
* 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 */