diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2006-04-01 19:06:54 +0000 | 
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2006-04-01 19:06:54 +0000 | 
| commit | 75239a017f0653feb41a3546cd643c356c56a5df (patch) | |
| tree | 414dd43b4bfb97d3d754134156d9b721f643e6f5 /lib/libc/stdio/xprintf.c | |
| parent | 634e63c986ba07fd015e3854392d44eec6e0ad35 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdio/xprintf.c')
| -rw-r--r-- | lib/libc/stdio/xprintf.c | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libc/stdio/xprintf.c b/lib/libc/stdio/xprintf.c index c7814fa7edf2a..8d529fcd2c201 100644 --- a/lib/libc/stdio/xprintf.c +++ b/lib/libc/stdio/xprintf.c @@ -496,10 +496,14 @@ __v2printf(FILE *fp, const char *fmt0, unsigned pct, const va_list ap)  			args[ch].pwchararg = va_arg (ap, wchar_t *);  			break;  		case PA_DOUBLE: +#ifndef NO_FLOATING_POINT  			args[ch].doublearg = va_arg (ap, double); +#endif  			break;  		case PA_DOUBLE | PA_FLAG_LONG_DOUBLE: +#ifndef NO_FLOATING_POINT  			args[ch].longdoublearg = va_arg (ap, long double); +#endif  			break;  		default:  			errx(1, "argtype = %x (fmt = \"%s\")\n",  | 
