From: Tim Peters Date: Sun, 16 Jul 2000 17:10:50 +0000 (+0000) Subject: Fix fatal compiler (MSVC6) error: X-Git-Tag: v2.0b1~808 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=855ffac224c5bc65a23988ec352091033f35d9f4;p=thirdparty%2FPython%2Fcpython.git 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 7c35f1c98f71..989ad1fdbb79 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 */