]> granicus.if.org Git - python/commitdiff
Add casts (one needed, one for consistency).
authorGeorg Brandl <georg@python.org>
Sun, 24 Oct 2010 14:21:42 +0000 (14:21 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 24 Oct 2010 14:21:42 +0000 (14:21 +0000)
Modules/ossaudiodev.c

index 2c9d797472af00ecc55ad589f19ab5debe635d41..0a70c202faaee295cb99f989f0c3dc5e69ff9095 100644 (file)
@@ -800,8 +800,8 @@ static PyMethodDef oss_methods[] = {
     { "flush",          (PyCFunction)oss_sync, METH_VARARGS },
 
     /* Support for the context manager protocol */
-    { "__enter__",      oss_self, METH_NOARGS },
-    { "__exit__",       oss_exit, METH_VARARGS },
+    { "__enter__",      (PyCFunction)oss_self, METH_NOARGS },
+    { "__exit__",       (PyCFunction)oss_exit, METH_VARARGS },
 
     { NULL,             NULL}           /* sentinel */
 };
@@ -812,8 +812,8 @@ static PyMethodDef oss_mixer_methods[] = {
     { "fileno",         (PyCFunction)oss_mixer_fileno, METH_NOARGS },
 
     /* Support for the context manager protocol */
-    { "__enter__",      oss_self, METH_NOARGS },
-    { "__exit__",       oss_exit, METH_VARARGS },
+    { "__enter__",      (PyCFunction)oss_self, METH_NOARGS },
+    { "__exit__",       (PyCFunction)oss_exit, METH_VARARGS },
 
     /* Simple ioctl wrappers */
     { "controls",       (PyCFunction)oss_mixer_controls, METH_VARARGS },