summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-08-31 05:07:19 (GMT)
committerFred Drake <fdrake@acm.org>2000-08-31 05:07:19 (GMT)
commitc818d5347ed2e1b250b4f2754cb9c2af80b63349 (patch)
tree8979ae8221a6998145f15100dfa235d8d4fc2fd9 /Modules
parent34bef2694f14bbcb2794538f11ace985c22c4d11 (diff)
downloadcpython-c818d5347ed2e1b250b4f2754cb9c2af80b63349.zip
cpython-c818d5347ed2e1b250b4f2754cb9c2af80b63349.tar.gz
cpython-c818d5347ed2e1b250b4f2754cb9c2af80b63349.tar.bz2
Remove one compiler warning found with -Wstrict-prototypes.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/audioop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/audioop.c b/Modules/audioop.c
index 49cd8c9..8c91617 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -40,7 +40,7 @@ typedef unsigned long Py_UInt32;
else if ( x > MAXLIN ) x = MAXLIN; \
} while ( 0 )
-static unsigned char st_linear_to_ulaw( /* int sample */ );
+static unsigned char st_linear_to_ulaw(int sample);
/*
** This macro converts from ulaw to 16 bit linear, faster.