]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove one compiler warning found with -Wstrict-prototypes.
authorFred Drake <fdrake@acm.org>
Thu, 31 Aug 2000 05:07:19 +0000 (05:07 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 31 Aug 2000 05:07:19 +0000 (05:07 +0000)
Modules/audioop.c

index 49cd8c95753143f37f6b98aac280ea2e92277225..8c916171cf29b8b9efafa9b4584d512e3aaa5efe 100644 (file)
@@ -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.