summaryrefslogtreecommitdiffstats
path: root/xvid_vbr.c
diff options
context:
space:
mode:
Diffstat (limited to 'xvid_vbr.c')
-rw-r--r--xvid_vbr.c2
1 files changed, 1 insertions, 1 deletions
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);