[MPlayer-cvslog] r23667 - trunk/libvo/vo_gl2.c
reimar
subversion at mplayerhq.hu
Tue Jun 26 17:51:43 CEST 2007
Author: reimar
Date: Tue Jun 26 17:51:43 2007
New Revision: 23667
Log:
remove useless calloc cast
Modified:
trunk/libvo/vo_gl2.c
Modified: trunk/libvo/vo_gl2.c
==============================================================================
--- trunk/libvo/vo_gl2.c (original)
+++ trunk/libvo/vo_gl2.c Tue Jun 26 17:51:43 2007
@@ -228,8 +228,7 @@ static int initTextures(void)
if (texgrid)
free(texgrid);
- texgrid = (struct TexSquare *)
- calloc (texnumx * texnumy, sizeof (struct TexSquare));
+ texgrid = calloc (texnumx * texnumy, sizeof (struct TexSquare));
raw_line_len = image_width * image_bytes;
More information about the MPlayer-cvslog
mailing list