diff options
author | bde <bde@FreeBSD.org> | 2001-10-15 04:29:06 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-10-15 04:29:06 +0000 |
commit | 3cf4ebab350b64985dcd279faf75bb28d781e08b (patch) | |
tree | 22a66e9865f11d81ba8d2e1d52e6cbb372aa01b2 /lib | |
parent | d0cf744bc2d38b50ee2fd8906dd9a51e21c82204 (diff) | |
download | FreeBSD-src-3cf4ebab350b64985dcd279faf75bb28d781e08b.zip FreeBSD-src-3cf4ebab350b64985dcd279faf75bb28d781e08b.tar.gz |
Fixed style bugs in previous commit.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index 4743426..bc0e06e 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 */ |