From: Martin v. Löwis Date: Sun, 9 Oct 2011 09:54:42 +0000 (+0200) Subject: Drop extra semicolon. X-Git-Tag: v3.3.0a1~1241 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87da872c69757c80edaee126663ea141bae3d94c;p=thirdparty%2FPython%2Fcpython.git Drop extra semicolon. --- diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index f90e0bd867a3..8fbad0999e2b 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -2050,7 +2050,7 @@ typedef struct _Py_Identifier { PyObject *object; } _Py_Identifier; -#define _Py_static_string(varname, value) static _Py_Identifier varname = { 0, value, 0 }; +#define _Py_static_string(varname, value) static _Py_Identifier varname = { 0, value, 0 } #define _Py_identifier(varname) _Py_static_string(PyId_##varname, #varname) /* Return an interned Unicode object for an Identifier; may fail if there is no memory.*/