| Index: source/libvpx/vp9/common/vp9_frame_buffers.c
 | 
| ===================================================================
 | 
| --- source/libvpx/vp9/common/vp9_frame_buffers.c	(revision 263011)
 | 
| +++ source/libvpx/vp9/common/vp9_frame_buffers.c	(working copy)
 | 
| @@ -19,8 +19,9 @@
 | 
|  
 | 
|    list->num_internal_frame_buffers =
 | 
|        VP9_MAXIMUM_REF_BUFFERS + VPX_MAXIMUM_WORK_BUFFERS;
 | 
| -  list->int_fb = vpx_calloc(list->num_internal_frame_buffers,
 | 
| -                            sizeof(*list->int_fb));
 | 
| +  list->int_fb =
 | 
| +      (InternalFrameBuffer *)vpx_calloc(list->num_internal_frame_buffers,
 | 
| +                                        sizeof(*list->int_fb));
 | 
|    return (list->int_fb == NULL);
 | 
|  }
 | 
|  
 | 
| 
 |