{ "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 */
};
{ "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 },