From 855ffac224c5bc65a23988ec352091033f35d9f4 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sun, 16 Jul 2000 17:10:50 +0000 Subject: [PATCH] Fix fatal compiler (MSVC6) error: unicodeobject.c(735) : error C2143: syntax error : missing ';' before '}' --- Objects/unicodeobject.c | 1 + 1 file changed, 1 insertion(+) 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 */ -- 2.40.0