diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2004-04-26 22:43:34 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2004-04-26 22:43:34 +0000 |
commit | b4ddf48953cb6279a27bf9b272884072cda7c6b5 (patch) | |
tree | ca2f4f9b6f2bf3a6b0433ac84eba488f33419c31 /newlib/libc | |
parent | f49dc8e6457132743f8695915ecd249e5595c442 (diff) | |
download | newlib-b4ddf48953cb6279a27bf9b272884072cda7c6b5.zip newlib-b4ddf48953cb6279a27bf9b272884072cda7c6b5.tar.gz newlib-b4ddf48953cb6279a27bf9b272884072cda7c6b5.tar.bz2 |
* libc/machine/powerpc/vfscanf.c (__svfscanf_r): Fix typo in
CT_INT case.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/machine/powerpc/vfscanf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/machine/powerpc/vfscanf.c b/newlib/libc/machine/powerpc/vfscanf.c index 00aafb5..dfbde8b 100644 --- a/newlib/libc/machine/powerpc/vfscanf.c +++ b/newlib/libc/machine/powerpc/vfscanf.c @@ -800,6 +800,7 @@ __svfscanf_r (rptr, fp, fmt0, ap) continue; case CT_INT: + { unsigned int_width_left = 0; int_width = width; #ifdef hardway @@ -1005,6 +1006,7 @@ __svfscanf_r (rptr, fp, fmt0, ap) } nread += p - buf; break; + } #ifdef FLOATING_POINT case CT_FLOAT: |