commit | 855ffac224c5bc65a23988ec352091033f35d9f4 | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Sun Jul 16 17:10:50 2000 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Sun Jul 16 17:10:50 2000 +0000 |
tree | 6e2b6bb4215e63c3f4ef57386ebc530b9475c5ae | |
parent | a924bb1ad2853bdf24a57bd25a011d5b43fac981 [diff] |
Fix fatal compiler (MSVC6) error: unicodeobject.c(735) : error C2143: syntax error : missing ';' before '}'
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 7c35f1c..989ad1f 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c
@@ -732,6 +732,7 @@ } s += n; nextChar: + /* empty */; } /* Adjust length */