summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2003-11-20 06:19:09 +0000
committerMonty <xiphmont@xiph.org>2003-11-20 06:19:09 +0000
commit8dbd220e9beb486fd446ee834531bd370e413bdb (patch)
treef81b82e71cc6965387a824fab36eed6d18cd0322
parenta2e192fc11e96a947d07e52571f852467f1b9ce6 (diff)
downloadtremor-8dbd220e9beb486fd446ee834531bd370e413bdb.tar.gz
kill off another compiler warning due to a (harmless) miscast.
git-svn-id: https://svn.xiph.org/branches/lowmem-branch/Tremor@5619 0101bb08-14d6-0310-b084-bc0e0c8e3800
-rw-r--r--mapping0.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mapping0.c b/mapping0.c
index cc8cbbb..0e2e711 100644
--- a/mapping0.c
+++ b/mapping0.c
@@ -109,13 +109,13 @@ int mapping_inverse(vorbis_dsp_state *vd,vorbis_info_mapping *info){
long n=ci->blocksizes[vd->W];
ogg_int32_t **pcmbundle=
- (ogg_int32_t **)alloca(sizeof(*pcmbundle)*vi->channels);
+ alloca(sizeof(*pcmbundle)*vi->channels);
int *zerobundle=
- (int *)alloca(sizeof(*zerobundle)*vi->channels);
+ alloca(sizeof(*zerobundle)*vi->channels);
int *nonzero=
- (int *)alloca(sizeof(*nonzero)*vi->channels);
+ alloca(sizeof(*nonzero)*vi->channels);
ogg_int32_t **floormemo=
- (void **)alloca(sizeof(*floormemo)*vi->channels);
+ alloca(sizeof(*floormemo)*vi->channels);
/* recover the spectral envelope; store it in the PCM vector for now */
for(i=0;i<vi->channels;i++){