mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 19:05:33 +00:00
remove useless calloc cast
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23667 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
3183c53efa
commit
db9f690747
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user