Fix fatal compiler (MSVC6) error:

unicodeobject.c(735) :
    error C2143: syntax error : missing ';' before '}'
This commit is contained in:
Tim Peters 2000-07-16 17:10:50 +00:00
parent a924bb1ad2
commit 855ffac224
1 changed files with 1 additions and 0 deletions

View File

@ -732,6 +732,7 @@ PyObject *PyUnicode_DecodeUTF8(const char *s,
} }
s += n; s += n;
nextChar: nextChar:
/* empty */;
} }
/* Adjust length */ /* Adjust length */