]> granicus.if.org Git - python/commitdiff
Drop extra semicolon.
authorMartin v. Löwis <martin@v.loewis.de>
Sun, 9 Oct 2011 09:54:42 +0000 (11:54 +0200)
committerMartin v. Löwis <martin@v.loewis.de>
Sun, 9 Oct 2011 09:54:42 +0000 (11:54 +0200)
Include/unicodeobject.h

index f90e0bd867a3f8bc7c6783394271e26eddaf022d..8fbad0999e2b6f438b3e4944e23a24214b9f1f52 100644 (file)
@@ -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.*/