diff options
| author | David Schultz <das@FreeBSD.org> | 2008-12-11 02:39:27 +0000 |
|---|---|---|
| committer | David Schultz <das@FreeBSD.org> | 2008-12-11 02:39:27 +0000 |
| commit | e18701f4ac402411b1a1d26eed4cc162d9c1580d (patch) | |
| tree | 6e99a3ae7323227be3ce211f3ccfd22e63ff454a /lib/libc/stdio/vfwprintf.c | |
| parent | 886ff602f210dbdc80f748cc6e9991917c90eae5 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdio/vfwprintf.c')
| -rw-r--r-- | lib/libc/stdio/vfwprintf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libc/stdio/vfwprintf.c b/lib/libc/stdio/vfwprintf.c index dcd0f14ba2fd..9f06f1b06a7f 100644 --- a/lib/libc/stdio/vfwprintf.c +++ b/lib/libc/stdio/vfwprintf.c @@ -575,12 +575,6 @@ __vfwprintf(FILE *fp, const wchar_t *fmt0, va_list ap) } - thousands_sep = '\0'; - grouping = NULL; -#ifndef NO_FLOATING_POINT - decimal_point = localeconv()->decimal_point; -#endif - convbuf = NULL; /* sorry, fwprintf(read_only_file, L"") returns WEOF, not 0 */ if (prepwrite(fp) != 0) return (EOF); @@ -590,11 +584,17 @@ __vfwprintf(FILE *fp, const wchar_t *fmt0, va_list ap) fp->_file >= 0) return (__sbprintf(fp, fmt0, ap)); + thousands_sep = '\0'; + grouping = NULL; + convbuf = NULL; fmt = (wchar_t *)fmt0; argtable = NULL; nextarg = 1; va_copy(orgap, ap); ret = 0; +#ifndef NO_FLOATING_POINT + decimal_point = localeconv()->decimal_point; +#endif /* * Scan the format for conversions (`%' character). |
