summaryrefslogtreecommitdiff
path: root/libc/stdio
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-01 22:11:07 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-01 22:11:07 +0000
commit0119403c3acb30557f5efdf8aacb378bed6a6e8e (patch)
treea0d059772e9590f4816df40aaaf856dbc13ebf37 /libc/stdio
parenteed923be3e7e81a8d812bd224c138dee5e20f95f (diff)
suppress a few "might be used uninitialized" warnings. No code growth.
Diffstat (limited to 'libc/stdio')
-rw-r--r--libc/stdio/old_vfprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/old_vfprintf.c b/libc/stdio/old_vfprintf.c
index 57f607142..8b8d50077 100644
--- a/libc/stdio/old_vfprintf.c
+++ b/libc/stdio/old_vfprintf.c
@@ -359,13 +359,13 @@ int vfprintf(FILE * __restrict op, register const char * __restrict fmt,
int i;
} intarg;
int i, cnt, dataargtype, len;
- const void *argptr; /* This does not need to be initialized. */
+ const void *argptr = argptr; /* ok to be initialized. */
register char *p;
const char *fmt0;
int preci, width;
#define upcase i
int radix, dpoint /*, upcase*/;
- char tmp[65]; /* TODO - determing needed size from headers */
+ char tmp[65]; /* TODO - determine needed size from headers */
char flag[sizeof(spec)];
__STDIO_AUTO_THREADLOCK_VAR;