summaryrefslogtreecommitdiff
path: root/libc/stdio
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio')
-rw-r--r--libc/stdio/scanf.c5
-rw-r--r--libc/stdio/stdio.c2
2 files changed, 5 insertions, 2 deletions
diff --git a/libc/stdio/scanf.c b/libc/stdio/scanf.c
index 51d30cdde..2962125b4 100644
--- a/libc/stdio/scanf.c
+++ b/libc/stdio/scanf.c
@@ -201,15 +201,16 @@ va_list ap;
strcpy(delim, "\011\012\013\014\015 ");
strcpy(digits, "0123456789ABCDEF");
- if (fmt[1] == '*') {
+ if (*++fmt == '*') {
endnull = store = 0;
++fmt;
}
- while (isdigit(*++fmt)) { /* width digit(s) */
+ while (isdigit(*fmt)) { /* width digit(s) */
if (width == -1)
width = 0;
wide1 = width = (width * 10) + (*fmt - '0');
+ ++fmt;
}
--fmt;
fmtnxt:
diff --git a/libc/stdio/stdio.c b/libc/stdio/stdio.c
index 6c8c69380..367f3f9e4 100644
--- a/libc/stdio/stdio.c
+++ b/libc/stdio/stdio.c
@@ -609,6 +609,8 @@ const char *mode;
int fopen_mode = 0;
FILE *nfp = 0;
+ Inline_init;
+
/* If we've got an fp close the old one (freopen) */
if (fp) {
/* Careful, don't de-allocate it */