]> git.ipfire.org Git - thirdparty/newt.git/commitdiff
Fix bug #54353 (remove extraneous/erroneous semicolons).
authorsopwith <sopwith>
Thu, 4 Oct 2001 17:35:17 +0000 (17:35 +0000)
committersopwith <sopwith>
Thu, 4 Oct 2001 17:35:17 +0000 (17:35 +0000)
snackmodule.c

index fda6bad4123e17674cc3728ed4a7d67ec6948fa5..d434a5dadfbeac12fc23ac8d68774f936b75bb1d 100644 (file)
@@ -93,7 +93,7 @@ static PyMethodDef snackModuleMethods[] = {
 } ;
 
 struct snackGrid_s {
-    PyObject_HEAD;
+    PyObject_HEAD
     newtGrid grid;
 } ;
 
@@ -125,7 +125,7 @@ static PyTypeObject snackGridType = {
 };
 
 struct snackForm_s {
-    PyObject_HEAD;
+    PyObject_HEAD
     newtComponent fo;
 } ;
 
@@ -167,7 +167,7 @@ static PyTypeObject snackFormType = {
 };
 
 struct snackWidget_s {
-    PyObject_HEAD;
+    PyObject_HEAD
     newtComponent co;
     char achar;
     void * apointer;