Commit 855ffac2 authored by Tim Peters's avatar Tim Peters

Fix fatal compiler (MSVC6) error:

unicodeobject.c(735) :
    error C2143: syntax error : missing ';' before '}'
parent a924bb1a
...@@ -732,6 +732,7 @@ PyObject *PyUnicode_DecodeUTF8(const char *s, ...@@ -732,6 +732,7 @@ PyObject *PyUnicode_DecodeUTF8(const char *s,
} }
s += n; s += n;
nextChar: nextChar:
/* empty */;
} }
/* Adjust length */ /* Adjust length */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment