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_libvorbis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libmpcodecs/ad_libvorbis.c') diff --git a/libmpcodecs/ad_libvorbis.c b/libmpcodecs/ad_libvorbis.c index 65944cc0ce..637b4f669f 100644 --- a/libmpcodecs/ad_libvorbis.c +++ b/libmpcodecs/ad_libvorbis.c @@ -72,7 +72,7 @@ static int init(sh_audio_t *sh) } /// Init the decoder with the 3 header packets - ov = (struct ov_struct_st*)malloc(sizeof(struct ov_struct_st)); + ov = malloc(sizeof(struct ov_struct_st)); vorbis_info_init(&ov->vi); vorbis_comment_init(&vc); -- cgit v1.2.3