From: Tim Peters Date: Thu, 14 Nov 2002 23:22:33 +0000 (+0000) Subject: Repaired illegal syntax most compilers probably let slide (but MSVC X-Git-Tag: v2.3c1~3415 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a6b8d8cf89236f92282ce7526d2d913d2afe643;p=thirdparty%2FPython%2Fcpython.git Repaired illegal syntax most compilers probably let slide (but MSVC treats as a fatal error). --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index e2dace8dd738..4b70a81fec4e 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -719,7 +719,7 @@ pmerge(PyObject *acc, PyObject* to_merge) { } } goto again; - skip: + skip: ; } PyMem_FREE(remain);