diff options
| author | Tim Peters <tim.peters@gmail.com> | 2000-07-16 17:10:50 +0000 |
|---|---|---|
| committer | Tim Peters <tim.peters@gmail.com> | 2000-07-16 17:10:50 +0000 |
| commit | 855ffac224c5bc65a23988ec352091033f35d9f4 (patch) | |
| tree | 6e2b6bb4215e63c3f4ef57386ebc530b9475c5ae /Objects | |
| parent | a924bb1ad2853bdf24a57bd25a011d5b43fac981 (diff) | |
| download | cpython-git-855ffac224c5bc65a23988ec352091033f35d9f4.tar.gz | |
Fix fatal compiler (MSVC6) error:
unicodeobject.c(735) :
error C2143: syntax error : missing ';' before '}'
Diffstat (limited to 'Objects')
| -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 7c35f1c98f..989ad1fdbb 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -732,6 +732,7 @@ PyObject *PyUnicode_DecodeUTF8(const char *s, } s += n; nextChar: + /* empty */; } /* Adjust length */ |
