From 3afd65b3afd338a32af0df8c8f0fdd4d2649c74e Mon Sep 17 00:00:00 2001 From: reynaldo Date: Sun, 2 Jul 2006 08:17:07 +0000 Subject: rm unnecesary casts from void* - part 3 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18884 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/ad_speex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libmpcodecs/ad_speex.c') diff --git a/libmpcodecs/ad_speex.c b/libmpcodecs/ad_speex.c index e78f42629c..21fa5a3d4d 100644 --- a/libmpcodecs/ad_speex.c +++ b/libmpcodecs/ad_speex.c @@ -36,7 +36,7 @@ static int preinit(sh_audio_t *sh) { } static int init(sh_audio_t *sh) { - context_t *ctx = (context_t *)calloc(1, sizeof(context_t)); + context_t *ctx = calloc(1, sizeof(context_t)); const SpeexMode *spx_mode; const SpeexStereoState st_st = SPEEX_STEREO_STATE_INIT; // hack if (!sh->wf || sh->wf->cbSize < 80) { -- cgit v1.2.3