From fee10040b4289560b5747d9e774e7a2d5d058605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Walter=20D=C3=B6rwald?= Date: Thu, 22 May 2003 17:22:54 +0000 Subject: [PATCH] sound_playsound() doesn't have to be visible externally, so make it static. --- PC/winsound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PC/winsound.c b/PC/winsound.c index bdc8b4c9cef..c6f3a534fa1 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;