fixing warning about uninitialized variable in libsys/vprintf.c
Change-Id: I8764a57b502edc3d50a32b3e2db56c4f94592309
This commit is contained in:
parent
a83e3a14fe
commit
7faf801d1f
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ int vprintf(const char *fmt, va_list argp)
|
||||||
char *x2c;
|
char *x2c;
|
||||||
char *p;
|
char *p;
|
||||||
long long i;
|
long long i;
|
||||||
unsigned long long u;
|
unsigned long long u = 0;
|
||||||
char temp[8 * sizeof(long long) / 3 + 2];
|
char temp[8 * sizeof(long long) / 3 + 2];
|
||||||
|
|
||||||
while ((c= *fmt++) != 0) {
|
while ((c= *fmt++) != 0) {
|
||||||
|
|
Loading…
Reference in a new issue