* libc/machine/powerpc/vfscanf.c (__svfscanf_r): Fix typo in

CT_INT case.
This commit is contained in:
Aldy Hernandez 2004-04-26 22:43:34 +00:00
parent f49dc8e645
commit b4ddf48953
2 changed files with 7 additions and 0 deletions
newlib
ChangeLog
libc/machine/powerpc

View File

@ -1,3 +1,8 @@
2004-04-26 Aldy Hernandez <aldyh@redhat.com>
* libc/machine/powerpc/vfscanf.c (__svfscanf_r): Fix typo in
CT_INT case.
2004-04-23 Artem B. Bityuckiy <abitytsky@softminecorp.com> 2004-04-23 Artem B. Bityuckiy <abitytsky@softminecorp.com>
* configure.in: Define _MB_CAPABLE if mb supported. * configure.in: Define _MB_CAPABLE if mb supported.

View File

@ -800,6 +800,7 @@ __svfscanf_r (rptr, fp, fmt0, ap)
continue; continue;
case CT_INT: case CT_INT:
{
unsigned int_width_left = 0; unsigned int_width_left = 0;
int_width = width; int_width = width;
#ifdef hardway #ifdef hardway
@ -1005,6 +1006,7 @@ __svfscanf_r (rptr, fp, fmt0, ap)
} }
nread += p - buf; nread += p - buf;
break; break;
}
#ifdef FLOATING_POINT #ifdef FLOATING_POINT
case CT_FLOAT: case CT_FLOAT: