Commit e913392d authored by Victor Stinner's avatar Victor Stinner

Fix my previous commit (r88702): initialize size_tflag in parse_format_flags()

parent f6c9a46e
......@@ -750,6 +750,7 @@ parse_format_flags(const char *f,
/* Handle %ld, %lu, %lld and %llu. */
longflag = 0;
longlongflag = 0;
size_tflag = 0;
if (*f == 'l') {
if (f[1] == 'd' || f[1] == 'u') {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment