diff xvid_vbr.c @ 18869:682a16136d6c

rm unnecesary void* casts - part 1
author reynaldo
date Sat, 01 Jul 2006 03:56:13 +0000
parents 401b440a6d76
children f3d7a1b58a82
line wrap: on
line diff
--- a/xvid_vbr.c	Fri Jun 30 20:05:28 2006 +0000
+++ b/xvid_vbr.c	Sat Jul 01 03:56:13 2006 +0000
@@ -704,7 +704,7 @@
 
 	/* 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);