summaryrefslogtreecommitdiffstats
path: root/Modules/audioop.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-10-31 20:32:13 (GMT)
committerGuido van Rossum <guido@python.org>1997-10-31 20:32:13 (GMT)
commit6345ac6d61f637f0e5977a4dd37d88de18b4bdb9 (patch)
treeab1d954b4b819fb6f125cb351ea584efca4b0e86 /Modules/audioop.c
parent197346fafe41332b896999b5bbdc7b1dabe57262 (diff)
downloadcpython-6345ac6d61f637f0e5977a4dd37d88de18b4bdb9.zip
cpython-6345ac6d61f637f0e5977a4dd37d88de18b4bdb9.tar.gz
cpython-6345ac6d61f637f0e5977a4dd37d88de18b4bdb9.tar.bz2
Add cast to realloc/malloc call to shut up AIX compiler. (Vladimir Marangozov)
Diffstat (limited to 'Modules/audioop.c')
-rw-r--r--Modules/audioop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/audioop.c b/Modules/audioop.c
index c6d9df5..50a899e 100644
--- a/Modules/audioop.c
+++ b/Modules/audioop.c
@@ -998,8 +998,8 @@ audioop_ratecv(self, args)
inrate /= d;
outrate /= d;
- prev_i = malloc(nchannels * sizeof(int));
- cur_i = malloc(nchannels * sizeof(int));
+ prev_i = (int *) malloc(nchannels * sizeof(int));
+ cur_i = (int *) malloc(nchannels * sizeof(int));
len /= size * nchannels; /* # of frames */
if (state == Py_None) {