summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-07-16 17:10:50 (GMT)
committerTim Peters <tim.peters@gmail.com>2000-07-16 17:10:50 (GMT)
commit855ffac224c5bc65a23988ec352091033f35d9f4 (patch)
tree6e2b6bb4215e63c3f4ef57386ebc530b9475c5ae
parenta924bb1ad2853bdf24a57bd25a011d5b43fac981 (diff)
downloadcpython-855ffac224c5bc65a23988ec352091033f35d9f4.zip
cpython-855ffac224c5bc65a23988ec352091033f35d9f4.tar.gz
cpython-855ffac224c5bc65a23988ec352091033f35d9f4.tar.bz2
Fix fatal compiler (MSVC6) error:
unicodeobject.c(735) : error C2143: syntax error : missing ';' before '}'
-rw-r--r--Objects/unicodeobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 7c35f1c..989ad1f 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 */