Fix fatal compiler (MSVC6) error:
unicodeobject.c(735) : error C2143: syntax error : missing ';' before '}'
This commit is contained in:
parent
a924bb1ad2
commit
855ffac224
|
@ -732,6 +732,7 @@ PyObject *PyUnicode_DecodeUTF8(const char *s,
|
||||||
}
|
}
|
||||||
s += n;
|
s += n;
|
||||||
nextChar:
|
nextChar:
|
||||||
|
/* empty */;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Adjust length */
|
/* Adjust length */
|
||||||
|
|
Loading…
Reference in New Issue