[libc] Consume the %s format character in vsprintf

Previously we were outputing a single 's' after the string.
This commit is contained in:
Drew Galbraith 2023-07-31 23:40:15 -07:00
parent f8f8c854eb
commit db5c9ab859
1 changed files with 1 additions and 0 deletions

View File

@ -111,6 +111,7 @@ int vsprintf(char *str, const char *format, va_list arg) {
*(str++) = *(instr++);
width++;
}
format++;
break;
}
default: