summaryrefslogtreecommitdiff
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 4f1177e1ad..7597a46ab6 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -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') {