diff options
Diffstat (limited to 'Modules/sunaudiodev.c')
-rw-r--r-- | Modules/sunaudiodev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/sunaudiodev.c b/Modules/sunaudiodev.c index 4f9d2bb..2774e05 100644 --- a/Modules/sunaudiodev.c +++ b/Modules/sunaudiodev.c @@ -51,7 +51,7 @@ typedef struct { staticforward PyTypeObject Sadtype; staticforward PyTypeObject Sadstatustype; -static sadstatusobject *sads_alloc(); /* Forward */ +static sadstatusobject *sads_alloc(void); /* Forward */ static PyObject *SunAudioError; @@ -364,7 +364,7 @@ sad_getattr(sadobject *xp, char *name) /* ----------------------------------------------------------------- */ static sadstatusobject * -sads_alloc() { +sads_alloc(void) { return PyObject_New(sadstatusobject, &Sadstatustype); } |