From: sopwith Date: Thu, 4 Oct 2001 17:35:17 +0000 (+0000) Subject: Fix bug #54353 (remove extraneous/erroneous semicolons). X-Git-Tag: r0-50-35~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cf4cf78f46080f0689040e0b4d2a977a0734c164;p=thirdparty%2Fnewt.git Fix bug #54353 (remove extraneous/erroneous semicolons). --- diff --git a/snackmodule.c b/snackmodule.c index fda6bad..d434a5d 100644 --- a/snackmodule.c +++ b/snackmodule.c @@ -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;