We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in function _vsnprintf_output from:lib/libc/printf.c
static int _vsnprintf_output(const char *str, size_t len, void *state) { struct _output_args *args = state;
size_t count = 0; while (count < len) { if (args->pos < args->len) { args->outstr[args->pos++] = *str; } str++; count++; } return count;
}
the return value count couldn't represent the actual length of string const char *str.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in function _vsnprintf_output from:lib/libc/printf.c
static int _vsnprintf_output(const char *str, size_t len, void *state)
{
struct _output_args *args = state;
}
the return value count couldn't represent the actual length of string const char *str.
The text was updated successfully, but these errors were encountered: