diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-02 00:01:53 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-02 00:01:53 (GMT) |
commit | e7faec1aa986f9214a72b2a5533dbab5864fd447 (patch) | |
tree | 0f8bd36edd11dcae8015a4c4ecd89de6426736a7 /Objects/unicodeobject.c | |
parent | 968654515f5484447d0f28fdaf5c5d7f5495b426 (diff) | |
download | cpython-e7faec1aa986f9214a72b2a5533dbab5864fd447.zip cpython-e7faec1aa986f9214a72b2a5533dbab5864fd447.tar.gz cpython-e7faec1aa986f9214a72b2a5533dbab5864fd447.tar.bz2 |
Fix my previous commit (r88702): initialize size_tflag in parse_format_flags()
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r-- | Objects/unicodeobject.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 4f1177e..7597a46 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') { |