]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix fatal compiler (MSVC6) error:
authorTim Peters <tim.peters@gmail.com>
Sun, 16 Jul 2000 17:10:50 +0000 (17:10 +0000)
committerTim Peters <tim.peters@gmail.com>
Sun, 16 Jul 2000 17:10:50 +0000 (17:10 +0000)
unicodeobject.c(735) :
    error C2143: syntax error : missing ';' before '}'

Objects/unicodeobject.c

index 7c35f1c98f710f16ffada0b249d7ac9b8c759495..989ad1fdbb794d74a305e8ac10b77bde5d60e4ba 100644 (file)
@@ -732,6 +732,7 @@ PyObject *PyUnicode_DecodeUTF8(const char *s,
         }
         s += n;
 nextChar:
+       /* empty */;
     }
 
     /* Adjust length */