From: Fred Drake Date: Thu, 31 Aug 2000 05:07:19 +0000 (+0000) Subject: Remove one compiler warning found with -Wstrict-prototypes. X-Git-Tag: v2.0b1~159 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c818d5347ed2e1b250b4f2754cb9c2af80b63349;p=thirdparty%2FPython%2Fcpython.git Remove one compiler warning found with -Wstrict-prototypes. --- diff --git a/Modules/audioop.c b/Modules/audioop.c index 49cd8c957531..8c916171cf29 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.