diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-04 12:59:15 +0000 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-04 12:59:15 +0000 |
commit | 0fcab4a3ed5e39769609b60d6179c4c801e45985 (patch) | |
tree | fc5592e351ed18a96d7e94aeb2ced52c0ba2fd0d /Modules/audioop.c | |
parent | Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred (diff) | |
download | cpython-0fcab4a3ed5e39769609b60d6179c4c801e45985.tar.gz cpython-0fcab4a3ed5e39769609b60d6179c4c801e45985.tar.bz2 cpython-0fcab4a3ed5e39769609b60d6179c4c801e45985.zip |
Issue #9566: use Py_ssize_t instead of int
Diffstat (limited to 'Modules/audioop.c')
-rw-r--r-- | Modules/audioop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/audioop.c b/Modules/audioop.c index 38e3e7ace2f..a031d42b0f1 100644 --- a/Modules/audioop.c +++ b/Modules/audioop.c @@ -309,7 +309,7 @@ audioop_check_size(int size) } static int -audioop_check_parameters(int len, int size) +audioop_check_parameters(Py_ssize_t len, int size) { if (!audioop_check_size(size)) return 0; |