projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2b2aff3
)
removed unused variable in vfwprintf
author
Rich Felker
<dalias@aerifal.cx>
Fri, 4 Oct 2013 04:14:57 +0000
(
00:14
-0400)
committer
Rich Felker
<dalias@aerifal.cx>
Fri, 4 Oct 2013 04:14:57 +0000
(
00:14
-0400)
src/stdio/vfwprintf.c
patch
|
blob
|
history
diff --git
a/src/stdio/vfwprintf.c
b/src/stdio/vfwprintf.c
index eb0793121ed1b5d8a0e089a24188ffdaf000f3c0..3557678f455d0189a169e5589b52c143e2d0b5b5 100644
(file)
--- a/
src/stdio/vfwprintf.c
+++ b/
src/stdio/vfwprintf.c
@@
-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;