mirror of
https://github.com/python/cpython.git
synced 2025-07-15 07:15:18 +00:00
Fix my previous commit (r88702): initialize size_tflag in parse_format_flags()
This commit is contained in:
parent
968654515f
commit
e7faec1aa9
1 changed files with 1 additions and 0 deletions
|
@ -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') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue