From 5b4ec50d44c9a40a9cd1719521b2fd9a290d4347 Mon Sep 17 00:00:00 2001 From: reynaldo Date: Sat, 1 Jul 2006 03:56:13 +0000 Subject: rm unnecesary void* casts - part 1 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18874 b3059339-0415-0410-9bf9-f77b7e298cf2 --- xvid_vbr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xvid_vbr.c') diff --git a/xvid_vbr.c b/xvid_vbr.c index e4beb6e8a9..d3a7388faa 100644 --- a/xvid_vbr.c +++ b/xvid_vbr.c @@ -704,7 +704,7 @@ static int vbr_init_2pass2(void *sstate) /* Allocate memory space for the keyframe_location array */ if((state->keyframe_locations - = (int*)malloc((state->nb_keyframes+1)*sizeof(int))) == NULL) { + = malloc((state->nb_keyframes+1)*sizeof(int))) == NULL) { fclose(state->pass1_file); state->pass1_file = NULL; return(-1); -- cgit v1.2.3