mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 22:52:23 +03:00
removed unused variable in vfwprintf
This commit is contained in:
parent
2b2aff37ac
commit
a938b5a12d
@ -167,7 +167,7 @@ static const char sizeprefix['y'-'a'] = {
|
||||
|
||||
static int wprintf_core(FILE *f, const wchar_t *fmt, va_list *ap, union arg *nl_arg, int *nl_type)
|
||||
{
|
||||
wchar_t *a, *z, *s=(wchar_t *)fmt, *s0;
|
||||
wchar_t *a, *z, *s=(wchar_t *)fmt;
|
||||
unsigned l10n=0, litpct, fl;
|
||||
int w, p;
|
||||
union arg arg;
|
||||
@ -242,7 +242,6 @@ static int wprintf_core(FILE *f, const wchar_t *fmt, va_list *ap, union arg *nl_
|
||||
} else p = -1;
|
||||
|
||||
/* Format specifier state machine */
|
||||
s0=s;
|
||||
st=0;
|
||||
do {
|
||||
if (OOB(*s)) return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user