]> granicus.if.org Git - python/commitdiff
sound_playsound() doesn't have to be visible externally,
authorWalter Dörwald <walter@livinglogic.de>
Thu, 22 May 2003 17:22:54 +0000 (17:22 +0000)
committerWalter Dörwald <walter@livinglogic.de>
Thu, 22 May 2003 17:22:54 +0000 (17:22 +0000)
so make it static.

PC/winsound.c

index bdc8b4c9cef67f5dad681c07a42f368d66a01b60..c6f3a534fa1f571bcd97f22cfdd464c4bb3d2dd9 100644 (file)
@@ -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;