Fix fatal compiler (MSVC6) error:
unicodeobject.c(735) :
    error C2143: syntax error : missing ';' before '}'
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 @@
         }
         s += n;
 nextChar:
+	/* empty */;
     }
 
     /* Adjust length */