From: Walter Dörwald Date: Thu, 22 May 2003 17:22:54 +0000 (+0000) Subject: sound_playsound() doesn't have to be visible externally, X-Git-Tag: v2.3c1~638 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fee10040b4289560b5747d9e774e7a2d5d058605;p=python sound_playsound() doesn't have to be visible externally, so make it static. --- diff --git a/PC/winsound.c b/PC/winsound.c index bdc8b4c9ce..c6f3a534fa 100644 --- a/PC/winsound.c +++ b/PC/winsound.c @@ -73,7 +73,7 @@ PyDoc_STRVAR(sound_module_doc, "\n" "Beep(frequency, duration) - Make a beep through the PC speaker."); -PyObject * +static PyObject * sound_playsound(PyObject *s, PyObject *args) { const char *sound;