remove useless calloc cast

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23667 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-06-26 15:51:43 +00:00
parent 3183c53efa
commit db9f690747
1 changed files with 1 additions and 2 deletions

View File

@ -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;